Christos Aridas
Christos Aridas
In tests it could be ok to have copy/paste code but I believe that in [common estimator checks](https://github.com/scikit-learn-contrib/imbalanced-learn/blob/master/imblearn/utils/estimator_checks.py) we could remove the boilerplate of datasets generation for each test by...
A Continuous Integration service should be configured in order on each PR the test suite will run automatically.
I tried to reduce the cyclomatic complexity in k medoids. During refactoring I realized that we are testing private methods. Why is that? So, the tests in the private methods...
How can I work with seglearn if I have a data representation that is presented [here](https://github.com/blue-yonder/tsfresh/blob/master/notebooks/timeseries_forecasting_basic_example.ipynb). I have two cases. In the first case I have a variable that is...
I think that the inclusion process could be improved. I have collected some thoughts. [Here](https://github.com/scikit-learn-contrib/scikit-learn-contrib/blob/master/workflow.md) is the workflow for the inclusion of a project. There are 8 requirements that should...
A quick and dirty solution would be to inherit from `scikit-learn`'s `BaseEstimator` class. Another option would be to create a base class or a mixin just for `stream-learn`.