Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
4 changes: 3 additions & 1 deletion 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 @@ -16,7 +17,8 @@ Release Notes
.. warning::

**Breaking Changes**
* Dropped support for Python 3.7 :pr:`3291`
* Dropped support for Python 3.8 :pr:`4414`
* 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