You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bayesian linear regression; I have to take care of this. Basically I only have to figure out how to produce prediction intervals and we're good to go.
Gradient boosting; @raphaelsty has already implemented AdaBoost, but it would be nice to check if other implementations work better.
Poisson regression; I've tried implementing the Poisson loss, but I didn't find a dataset on which it worked better than squared loss. Note that this is implemented in tf.keras.losses.
Birch clustering; a fair amount of people have expressed interest in having more online clustering solutions (k-means just isn't good enough)
Online SVM; ALMA seems to be a good first method to implement. The main thing is that I'm not sure about the API. Should this be an optimizer or a separate class?. It's fine if we don't solve this issue for the release, but I would like to do some brainstorming on it regarding the API.
There also some issues related to docs and tests which need to be solved:
* Implements the naming convention defined in Issue #138 and updates legacy demo codes accordingly
* Apply minor improvements to MultiOutputLearner
- Update documentation to reflect the fact that this estimator is task agnostic and supports both classification and regression.
- Add estimator type check
- Add regression task test
* Fixes#111
* Update documentation of the Hoeffding Tree regressor
* Update test for Very Fast Decision Rules
* Update docstring in learning node for regression to indicate the correct tree type
* Add directive to skip stubs for old names in coverage
* Fix bug in test_pipeline.py
* Add naming convention for new methods in CONTRIBUTING.md file
Here's a list of main issues I would like to see solved before we make the release:
tf.keras.losses
.There also some issues related to docs and tests which need to be solved:
Naturally this doesn't mean other issues can't be worked on too!
The text was updated successfully, but these errors were encountered: