Closed JonathanShor closed 6 years ago
Changes required include, at least:
.fit(X)
clf.fit(X).predict(X)
.predict(X)
.predict_proba(X)
.predict_log_proba(X)
What will .predict_proba(X) return? The voting average or all p-values?
I also see a number of issues with the docstring, but I'm assuming we will update those with the 2.0 release.
Changes required include, at least:
.fit(X)
returns the class instance, not the labels, to allow chained calls (clf.fit(X).predict(X)
)..predict(X)
..predict_proba(X)
. 3a. Not sure that we need.predict_log_proba(X)