-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
1,081 additions
and
1,039 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Set default behaviour, in case users don't have core.autocrlf set. | ||
* text=auto | ||
|
||
# Explicitly declare text files we want to always be normalized and converted | ||
# to native line endings on checkout. | ||
*.c text | ||
*.h text | ||
*.sh text | ||
*.less text | ||
*.yaml text | ||
*.yml text | ||
*.conf text | ||
*.ini text | ||
*.json text | ||
*.md text | ||
|
||
# Denote all files that are truly binary and should not be modified. | ||
*.png binary | ||
*.jpg binary | ||
*.jpeg binary | ||
*.gif binary | ||
*.eot binary | ||
*.svg binary | ||
*.ttf binary | ||
*.woff binary | ||
*.cur binary | ||
*.xpm binary | ||
*.ico binary | ||
*.icns binary | ||
*.so binary | ||
*.dll binary | ||
*.pkl binary | ||
*.zip binary | ||
*.tar.* binary | ||
*.tgz binary |
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 |
---|---|---|
@@ -1,14 +1,21 @@ | ||
agglom_cluster Changelog | ||
======================= | ||
2.0.0 - 01/30/2016 | ||
------------------ | ||
### Improvements | ||
- Added cython compilation for speedup | ||
- Refactored model into more intuitive design | ||
- Removed redundant code paths/repeated copies | ||
|
||
1.0.3 - 08/24/2015 | ||
------------------ | ||
### Improvements | ||
- Added ability to pass a uniqueness flag that forces all quality scores between clusters with the | ||
flag to be 0. | ||
agglom_cluster Changelog | ||
======================= | ||
2.0.1 - 05/16/2016 | ||
### Bug | ||
- Fixed bug where graphs with integer nodes would sometimes generate damaged dendrograms | ||
|
||
### Improvement | ||
- Fixed line-endings and added gitattributes for better cross-platform development | ||
|
||
2.0.0 - 01/30/2016 | ||
------------------ | ||
### Improvements | ||
- Added cython compilation for speedup | ||
- Refactored model into more intuitive design | ||
- Removed redundant code paths/repeated copies | ||
|
||
1.0.3 - 08/24/2015 | ||
------------------ | ||
### Improvements | ||
- Added ability to pass a uniqueness flag that forces all quality scores between clusters with the | ||
flag to be 0. |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
include README.md | ||
include LICENSE | ||
include requirements.txt | ||
include README.md | ||
include LICENSE | ||
include requirements.txt | ||
|
||
exclude tests |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
__all__ = ['cluster'] | ||
|
||
from .cluster import GreedyAgglomerativeClusterer | ||
__all__ = ['cluster'] | ||
|
||
from .cluster import GreedyAgglomerativeClusterer |
Oops, something went wrong.