-
Notifications
You must be signed in to change notification settings - Fork 151
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update docs for new version * Upgrade to v0.1
- Loading branch information
Showing
3 changed files
with
50 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
Announcement: GraSPy 0.1 | ||
========================== | ||
|
||
We're happy to announce the release of GraSPy 0.1! GraSPy is a Python package for | ||
understanding the properties of random graphs that arise from modern datasets, such as | ||
social networks and brain networks. | ||
|
||
For more information, please visit our `website <http://graspy.neurodata.io/>`_ | ||
and our `tutorials <https://graspy.neurodata.io/tutorial.html>`_. | ||
|
||
|
||
Highlights | ||
---------- | ||
This release is the result of over 2 months of work with over 18 pull requests by | ||
3 contributors. Highlights include: | ||
|
||
- Added ``MultipleASE``, which is a new method for embedding population of graphs. | ||
- Added ``mug2vec`` within ``pipieline`` module, which learns a feature vector for population of graphs. | ||
|
||
Improvements | ||
------------ | ||
- Improved contribution guidelines. | ||
- Fixed bugs in ``GaussianCluster``. | ||
- ``symmeterize`` function now uses ``avg`` as default method. | ||
- Fixed ``dataset`` module loading errors. | ||
- Improve underlying `ER` sampling code. | ||
|
||
API Changes | ||
----------- | ||
- Added ``sort_nodes`` argument for ``heatmap`` and ``gridplot`` functions. | ||
|
||
Deprecations | ||
------------ | ||
None | ||
|
||
Contributors to this release | ||
---------------------------- | ||
- `Jaewon Chung <https://github.com/j1c>`_ | ||
- `Benjamin Pedigo <https://github.com/bdpedigo>`_ | ||
- `Kiki Zhang <https://github.com/Kikiwink>`_ (new contributor!) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,4 +15,4 @@ | |
warnings.simplefilter("always", category=UserWarning) | ||
|
||
|
||
__version__ = "0.0.3" | ||
__version__ = "0.1" |