Skip to content

Commit

Permalink
[FIX] Missing autormok in core.ipynb (#1167)
Browse files Browse the repository at this point in the history
  • Loading branch information
elephaint authored Oct 1, 2024
1 parent 69255e8 commit 38195f6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
5 changes: 3 additions & 2 deletions nbs/core.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
" StemGNN, PatchTST, TimesNet, TimeLLM, TSMixer, TSMixerx,\n",
" MLPMultivariate, iTransformer,\n",
" BiTCN, TiDE, DeepNPTS, SOFTS,\n",
" TimeMixer, KAN\n",
" TimeMixer, KAN, RMoK\n",
")\n",
"from neuralforecast.common._base_auto import BaseAuto, MockTrial"
]
Expand Down Expand Up @@ -245,7 +245,8 @@
" 'deepnpts': DeepNPTS, 'autodeepnpts': DeepNPTS,\n",
" 'softs': SOFTS, 'autosofts': SOFTS,\n",
" 'timemixer': TimeMixer, 'autotimemixer': TimeMixer,\n",
" 'kan': KAN, 'autokan': KAN\n",
" 'kan': KAN, 'autokan': KAN,\n",
" 'rmok': RMoK, 'autormok': RMoK\n",
"}"
]
},
Expand Down
3 changes: 3 additions & 0 deletions neuralforecast/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@
SOFTS,
TimeMixer,
KAN,
RMoK,
)
from .common._base_auto import BaseAuto, MockTrial

Expand Down Expand Up @@ -190,6 +191,8 @@ def _insample_times(
"autotimemixer": TimeMixer,
"kan": KAN,
"autokan": KAN,
"rmok": RMoK,
"autormok": RMoK,
}

# %% ../nbs/core.ipynb 8
Expand Down

0 comments on commit 38195f6

Please sign in to comment.