Skip to content

Commit

Permalink
Added basic one-hot encoding (#73)
Browse files Browse the repository at this point in the history
* Added categorical for regression

* Added categorical for classificaiton

* Cleanup, fix feature_importance, and get rid of uncessary tuning

* set requirement ver

* Updated docs
  • Loading branch information
jeremyliweishih committed Sep 18, 2019
1 parent 365c0b0 commit a3d3304
Show file tree
Hide file tree
Showing 15 changed files with 168 additions and 149 deletions.
2 changes: 1 addition & 1 deletion docs/source/automl/pipeline_search.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"source": [
"## How it works\n",
"\n",
"EvalML selects and tunes machine learning pipelines built of numerous steps. This includes missing value imputation, feature selection, feature scaling, and finally machine learning. As EvalML tunes pipelines, it uses the objective function selected and configured by the user to guide its search. \n",
"EvalML selects and tunes machine learning pipelines built of numerous steps. This includes encoding categorical data, missing value imputation, feature selection, feature scaling, and finally machine learning. As EvalML tunes pipelines, it uses the objective function selected and configured by the user to guide its search. \n",
"\n",
"\n",
"At each iteration, EvalML uses cross-validation to generate an estimate of the pipeline's performances. If a pipeline has high variance across cross-validation folds, it will provide a warning. In this case, the pipeline may not perform reliably in the future.\n",
Expand Down
2 changes: 1 addition & 1 deletion docs/source/automl/regression_example.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.8"
"version": "3.7.4"
}
},
"nbformat": 4,
Expand Down
2 changes: 1 addition & 1 deletion docs/source/automl/search_results.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -811,7 +811,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.8"
"version": "3.7.4"
}
},
"nbformat": 4,
Expand Down
Loading

0 comments on commit a3d3304

Please sign in to comment.