Skip to content

Commit

Permalink
Fix wrappers intro notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
MichalChromcak committed Jun 30, 2020
1 parent 601f101 commit d7940e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/examples/tutorial/wrappers/01_wrappers_intro.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
"metadata": {},
"outputs": [],
"source": [
"from hcrystalball.wrappers import ExponentialSmoothingWrapper"
"from hcrystalball.wrappers import ProphetWrapper"
]
},
{
Expand All @@ -122,7 +122,7 @@
"metadata": {},
"outputs": [],
"source": [
"model = ExponentialSmoothingWrapper()\n",
"model = ProphetWrapper()\n",
"model.fit(X[:-10], y[:-10])\n",
"model.predict(X[-10:])"
]
Expand Down

0 comments on commit d7940e5

Please sign in to comment.