Skip to content

Commit

Permalink
Merge branch 'remove_vowpalwabbit' into install_test_fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelFu512 committed May 21, 2024
2 parents 9e00b9e + 54d3753 commit 6c23f1c
Show file tree
Hide file tree
Showing 21 changed files with 9 additions and 539 deletions.
1 change: 0 additions & 1 deletion .github/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ outputs:
- imbalanced-learn >=0.11.0
- sktime >=0.21.0, <0.29.0
- pmdarima >=1.8.5
- vowpalwabbit >=8.11.0, <9.9.0
test:
imports:
- evalml
Expand Down
3 changes: 0 additions & 3 deletions docs/source/api_index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -264,8 +264,6 @@ Classifiers are components that output a predicted class label.
evalml.pipelines.components.RandomForestClassifier
evalml.pipelines.components.StackedEnsembleClassifier
evalml.pipelines.components.SVMClassifier
evalml.pipelines.components.VowpalWabbitBinaryClassifier
evalml.pipelines.components.VowpalWabbitMulticlassClassifier
evalml.pipelines.components.XGBoostClassifier


Expand All @@ -290,7 +288,6 @@ Regressors are components that output a predicted target value.
evalml.pipelines.components.StackedEnsembleRegressor
evalml.pipelines.components.SVMRegressor
evalml.pipelines.components.TimeSeriesBaselineEstimator
evalml.pipelines.components.VowpalWabbitRegressor
evalml.pipelines.components.XGBoostRegressor


Expand Down
2 changes: 2 additions & 0 deletions docs/source/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Release Notes
* Fixes
* Changes
* Dropped support for Python 3.8 :pr:`4414`
* Removed vowpalwabbit :pr:`4427`
* Uncapped holidays :pr:`4428`
* Documentation Changes
* Testing Changes
Expand All @@ -18,6 +19,7 @@ Release Notes

**Breaking Changes**
* Dropped support for Python 3.7 :pr:`3291`
* Removed vowpalwabbit :pr:`4427`


**v0.83.0 Feb 2, 2024**
Expand Down
3 changes: 0 additions & 3 deletions evalml/pipelines/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,6 @@
ARIMARegressor,
VARMAXRegressor,
ProphetRegressor,
VowpalWabbitBinaryClassifier,
VowpalWabbitMulticlassClassifier,
VowpalWabbitRegressor,
DropNaNRowsTransformer,
TimeSeriesRegularizer,
OrdinalEncoder,
Expand Down
3 changes: 0 additions & 3 deletions evalml/pipelines/components/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,6 @@
ExponentialSmoothingRegressor,
ARIMARegressor,
VARMAXRegressor,
VowpalWabbitBinaryClassifier,
VowpalWabbitMulticlassClassifier,
VowpalWabbitRegressor,
)
from evalml.pipelines.components.transformers import (
Transformer,
Expand Down
3 changes: 0 additions & 3 deletions evalml/pipelines/components/estimators/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@
DecisionTreeClassifier,
KNeighborsClassifier,
SVMClassifier,
VowpalWabbitBinaryClassifier,
VowpalWabbitMulticlassClassifier,
)
from evalml.pipelines.components.estimators.regressors import (
LinearRegressor,
Expand All @@ -33,5 +31,4 @@
ARIMARegressor,
VARMAXRegressor,
ProphetRegressor,
VowpalWabbitRegressor,
)
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,3 @@
from evalml.pipelines.components.estimators.classifiers.svm_classifier import (
SVMClassifier,
)
from evalml.pipelines.components.estimators.classifiers.vowpal_wabbit_classifiers import (
VowpalWabbitBinaryClassifier,
VowpalWabbitMulticlassClassifier,
)

This file was deleted.

3 changes: 0 additions & 3 deletions evalml/pipelines/components/estimators/regressors/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,3 @@
from evalml.pipelines.components.estimators.regressors.varmax_regressor import (
VARMAXRegressor,
)
from evalml.pipelines.components.estimators.regressors.vowpal_wabbit_regressor import (
VowpalWabbitRegressor,
)

This file was deleted.

Loading

0 comments on commit 6c23f1c

Please sign in to comment.