Skip to content

Commit

Permalink
fix notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
Egor Baturin committed Aug 29, 2024
1 parent c4a7adc commit ea07e7e
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions examples/210-embedding_models.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -658,8 +658,7 @@
"from etna.datasets import load_dataset\n",
"\n",
"ts = load_dataset(\"m3_monthly\")\n",
"ts.drop_features(features=[\"origin_timestamp\"])\n",
"ts.df_exog = None\n",
"ts = TSDataset(ts.to_pandas(features=[\"target\"]), freq=None)\n",
"ts.head()"
]
},
Expand Down Expand Up @@ -1502,8 +1501,7 @@
"HORIZON = 12\n",
"\n",
"ts = load_dataset(\"tourism_monthly\")\n",
"ts.drop_features(features=[\"origin_timestamp\"])\n",
"ts.df_exog = None\n",
"ts = TSDataset(ts.to_pandas(features=[\"target\"]), freq=None)\n",
"ts.head()"
]
},
Expand Down

0 comments on commit ea07e7e

Please sign in to comment.