Skip to content

Commit

Permalink
mute simpleimputer for now
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahmish committed Nov 14, 2024
1 parent 72df9bb commit 1c72105
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ X_train, X_test, y_train, y_test = train_test_split(dataset, label, stratify=lab
primitives = [
'mlprimitives.custom.preprocessing.ClassEncoder',
'mlprimitives.custom.feature_extraction.CategoricalEncoder',
'sklearn.impute.SimpleImputer',
# 'sklearn.impute.SimpleImputer',
'xgboost.XGBClassifier',
'mlprimitives.custom.preprocessing.ClassDecoder'
]
Expand Down
2 changes: 1 addition & 1 deletion examples/tutorials/1. Using and MLPipeline.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@
"primitives = [\n",
" 'mlprimitives.custom.preprocessing.ClassEncoder',\n",
" 'mlprimitives.custom.feature_extraction.CategoricalEncoder',\n",
" 'sklearn.impute.SimpleImputer',\n",
" # 'sklearn.impute.SimpleImputer',\n",
" 'xgboost.XGBClassifier',\n",
" 'mlprimitives.custom.preprocessing.ClassDecoder'\n",
"]\n",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"primitives = [\n",
" 'mlprimitives.custom.preprocessing.ClassEncoder',\n",
" 'mlprimitives.custom.feature_extraction.CategoricalEncoder',\n",
" 'sklearn.impute.SimpleImputer',\n",
" # 'sklearn.impute.SimpleImputer',\n",
" 'xgboost.XGBClassifier',\n",
" 'mlprimitives.custom.preprocessing.ClassDecoder'\n",
"]\n",
Expand Down
2 changes: 1 addition & 1 deletion examples/tutorials/4. Saving and Loading a Pipeline.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"primitives = [\n",
" 'mlprimitives.custom.preprocessing.ClassEncoder',\n",
" 'mlprimitives.custom.feature_extraction.CategoricalEncoder',\n",
" 'sklearn.impute.SimpleImputer',\n",
" # 'sklearn.impute.SimpleImputer',\n",
" 'xgboost.XGBClassifier',\n",
" 'mlprimitives.custom.preprocessing.ClassDecoder'\n",
"]\n",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@
"primitives = [\n",
" 'mlprimitives.custom.preprocessing.ClassEncoder',\n",
" 'mlprimitives.custom.feature_extraction.CategoricalEncoder',\n",
" 'sklearn.impute.SimpleImputer',\n",
" # 'sklearn.impute.SimpleImputer',\n",
" 'xgboost.XGBClassifier',\n",
" 'mlprimitives.custom.preprocessing.ClassDecoder'\n",
"]\n",
Expand Down
2 changes: 1 addition & 1 deletion examples/tutorials/6. Flexible outputs specification.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"primitives = [\n",
" 'mlprimitives.custom.preprocessing.ClassEncoder',\n",
" 'mlprimitives.custom.feature_extraction.CategoricalEncoder',\n",
" 'sklearn.impute.SimpleImputer',\n",
" # 'sklearn.impute.SimpleImputer',\n",
" 'xgboost.XGBClassifier',\n",
" 'mlprimitives.custom.preprocessing.ClassDecoder'\n",
"]\n",
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
'Sphinx>=1.7.1,<3',
'sphinx_rtd_theme>=0.2.4,<0.5',
'docutils>=0.12,<0.18',
'lxml_html_clean>=0.2.2',
'ipython>=6.5.0',
'autodocsumm>=0.1.10',
'Jinja2>=2,<3', # >=3 makes sphinx theme fail
Expand Down

0 comments on commit 1c72105

Please sign in to comment.