Skip to content

Commit

Permalink
Added docstring header
Browse files Browse the repository at this point in the history
  • Loading branch information
levinwil authored Sep 10, 2020
1 parent 535ecf7 commit 5c91c1b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion proglearn/forest.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
'''
Main Author: Will LeVine
Corresponding Email: levinewill@icloud.com
'''
from .progressive_learner import ProgressiveLearner
from .transformers import TreeClassificationTransformer
from .voters import TreeClassificationVoter
from .deciders import SimpleAverage


class LifelongClassificationForest:
def __init__(self, n_estimators=100, finite_sample_correction=False):
self.n_estimators = n_estimators
Expand Down

0 comments on commit 5c91c1b

Please sign in to comment.