machine-learning icon indicating copy to clipboard operation
machine-learning copied to clipboard

Web-interface + rest API for classification and regression (https://jeff1evesque.github.io/machine-learning.docs)

Results 78 machine-learning issues
Sort by recently updated
recently updated
newest added

When a user uploads a dataset, on the web-interface, it's possible a segment is malformed. We will need to adjust the backend validator, to return the segment that is incorrect,...

new feature

We will provide each user the ability to inventory each collection of datasets they have permission to access. Then, we will nest the corresponding documents under each collection. The user...

new feature

We will standardize some python scripts, which will manually stress test the programmatic api. Since stress testing will occur less frequent then both the automatic, and manual unit tests, it...

new feature
profile

We need to create unit tests for the web-interface, as an anonymous user.

new feature
unit test

We need to create unit tests for the web-interface, as an authenticated user.

new feature
unit test

Create a python function for the ada boost regressor methods which supports SVC, KNN, RF, and normal decision trees.

new feature
unit test

We need to unit test the adaboost (classifier) ensemble method, and develop any backend dependency, to allow the programmatic-api, to cooperate with the desired unit test.

new feature
unit test

We need to investigate the requirements to streamline the following bootstrap aggregation methods: - [bagging classifier](http://scikit-learn.org/stable/modules/generated/sklearn.ensemble.BaggingClassifier.html) - [bagging regressor](http://scikit-learn.org/stable/modules/generated/sklearn.ensemble.BaggingRegressor.html)

research

We need to investigate the requirements to streamline boosting implementation

research

We need to restructure our `model_type` from `application.yaml`: ```yaml model_type: - svm - svr - bagc - bagr ``` To the following: ```yaml model_type: classifiers: - svm - bagc regressors:...

enhancement
build
frontend