Skip to content

Commit

Permalink
0.8.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
xehivs committed Dec 27, 2019
1 parent 60fdee2 commit bfed43f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 15 deletions.
13 changes: 2 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ plt.legend()

![](https://w4k2.github.io/stream-learn/_images/simplest.png)

<!--
---
Expand All @@ -122,19 +123,9 @@ plt.legend()
</p>
</p>


![](https://w4k2.github.io/stream-learn/_images/disco.png)









-->



Expand Down
2 changes: 1 addition & 1 deletion strlearn/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""``stream-learn``"""

__version__ = "0.8.4"
__version__ = "0.8.5"
8 changes: 5 additions & 3 deletions strlearn/ensembles/SEA.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,19 @@

class SEA(ClassifierMixin, BaseEnsemble):
"""
Chunk based ensemble classifier.
Streaming Ensemble Algorithm.
Ensemble classifier composed of estimators trained on the fixed
number of previously seen data chunks.
number of previously seen data chunks, prunning the worst one in the pool.
Parameters
----------
n_estimators : integer, optional (default=5)
n_estimators : integer, optional (default=10)
The maximum number of estimators trained using consecutive data chunks
and maintained in the ensemble.
metric : function, optional (default=accuracy_score)
The metric used to prune the worst classifier in the pool.
Attributes
----------
Expand Down

0 comments on commit bfed43f

Please sign in to comment.