Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Egor Baturin committed Nov 11, 2024
1 parent 1bdcb98 commit 80741b2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/205-automl.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -2585,7 +2585,7 @@
"id": "0e27cd91",
"metadata": {},
"source": [
"We can use own set of pipelines in the search."
"We can define our own set of pipelines for the search."
]
},
{
Expand All @@ -2598,7 +2598,7 @@
"pool = [\n",
" Pipeline(model=NaiveModel(lag=1), transforms=(), horizon=HORIZON),\n",
" Pipeline(\n",
" model=LinearPerSegmentModel(fit_intercept=True),\n",
" model=LinearPerSegmentModel(),\n",
" transforms=[LagTransform(in_column=\"target\", lags=list(range(HORIZON, 2 * HORIZON)), out_column=\"target_lag\")],\n",
" horizon=HORIZON,\n",
" ),\n",
Expand Down
2 changes: 2 additions & 0 deletions examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ We have prepared a set of tutorials for an easy introduction:
- General AutoML
- How `Auto` works
- Example
- Using custom pipeline pool
- Summary

#### [Clustering](https://github.com/etna-team/etna/tree/master/examples/206-clustering.ipynb)
Expand Down Expand Up @@ -133,6 +134,7 @@ We have prepared a set of tutorials for an easy introduction:
- EmbeddingSegmentTransform
- EmbeddingWindowTransform
- Saving and loading models
- Loading external pretrained models

### Advanced

Expand Down

0 comments on commit 80741b2

Please sign in to comment.