Skip to content

Commit

Permalink
Take 2
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherry committed Apr 20, 2020
1 parent 839a3b8 commit 346f339
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/source/pipelines/custom_pipelines.ipynb
Expand Up @@ -15,7 +15,7 @@
"metadata": {},
"outputs": [],
"source": [
"from evalml.pipelines import MultiClassificationPipeline\n",
"from evalml.pipelines import MulticlassClassificationPipeline\n",
"from evalml.pipelines.components import StandardScaler, SimpleImputer\n",
"from evalml.pipelines.components.estimators import LogisticRegressionClassifier\n",
"\n",
Expand All @@ -25,7 +25,7 @@
"\n",
"\n",
"# the pipeline needs to be a subclass of one of our base pipelines, in this case `BinaryClassificationPipeline`\n",
"class CustomPipeline(MultiClassificationPipeline):\n",
"class CustomPipeline(MulticlassClassificationPipeline):\n",
" # component_graph and problem_types are required class variables\n",
" \n",
" # components can be passed in as objects or as component name strings\n",
Expand Down

0 comments on commit 346f339

Please sign in to comment.