Skip to content

Releases: pnnl/HyperNetX

HNX 1.2.2 Hotfix

21 Dec 23:19
53203cc
Compare
Choose a tag to compare

Updated setup.py to include celluloid and igraph as required modules during install.

New Modularity and Clustering Module

29 Oct 19:31
773120b
Compare
Choose a tag to compare

Added module and tutorial for hypergraph modularity and clustering.
Several Bug fixes

HNX 1.1.3 bugfix

10 Sep 07:55
c390a3d
Compare
Choose a tag to compare
  • fixed size and degree bugs in hypergraph
  • updated Tutorial 8 to work without nwhy
  • fixed bug in Tutoral 10

Bugfix for Adjacency Matrix

29 Aug 18:24
f5287dd
Compare
Choose a tag to compare

Bugfix for adjacency matrix. Cell weighting is currently only supported for incidence matrices. User will need to determine appropriate use of weights for adjacency matrix according to their application for now.
Static nodes and edges can have attributes set through the StaticEntity class. Use s-parameter to generate s-linegraph adjacency matrix and networkx generated graph with node and edge attributes read from data.

HNX v1.1

13 Aug 19:23
12a50cc
Compare
Choose a tag to compare
  1. Static Hypergraph refactored to improve performance across all methods.
  2. Added modules and tutorials for Contagion Modeling, Community Detection, Clustering, and Hypergraph Generation.
  3. Cell weights for incidence matrices may be added to static hypergraphs on construction.
  4. Changed nodes and edges to UserLists with the option to add properties in Static Hypergraph.
  5. Static Hypergraph nodes has membership property for fast look up of edges incident to a node.

HNX 1.0.4 bugfix

26 Jun 22:46
5616e01
Compare
Choose a tag to compare

removed merge conflict that was pushed by accident

Correcting imports for colab tutorials - bugfix

26 Jun 21:08
cbf2520
Compare
Choose a tag to compare
Merge pull request #62 from pnnl/v103

updating urls for data for tutorials

HNX 1.0.4

26 Jun 21:00
fd3a889
Compare
Choose a tag to compare

Linked data for tutorials to github files for use with colab.

Bug fix

09 Jun 19:17
Compare
Choose a tag to compare

Bug fix, import missing

HNX 1.0.0

09 Jun 16:30
e589c6b
Compare
Choose a tag to compare

New Features of Version 1.0:

  1. Hypergraph construction can be sped up by reading in all of the data at once. In particular the hypergraph constructor may read a Pandas dataframe object and create edges and nodes based on column headers. The new hypergraphs are given an attribute static=True.
  2. A C++ addon called NWHy can be used in Linux environments to support optimized hypergraph methods such as s-centrality measures.
  3. A JavaScript addon called Hypernetx-Widget can be used to interactively inspect hypergraphs in a Jupyter Notebook.
  4. We've added four new tutorials highlighting the s-centrality metrics, static Hypergraphs, NWHy, and Hypernetx-Widget.