Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion tests/models/test_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,6 @@ def test_using_level(model):
"AutoLGBM",
"AutoNHITS",
"AutoTFT",
"PatchTST-FM",
]:
# These models do not support levels yet
with pytest.raises(ValueError) as excinfo:
Expand Down
5 changes: 0 additions & 5 deletions timecopilot/models/foundation/patchtst_fm.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,11 +226,6 @@ def forecast(
identifiers as the input DataFrame.
"""
freq = self._maybe_infer_freq(df, freq)
# When support for levels is added remove PatchTST-FM
# from the list of models that throw this exception in
# tests/models/test_models:test_using_level()
if level is not None:
raise ValueError("Level is not supported for patchtst-fm yet.")
qc = QuantileConverter(level=level, quantiles=quantiles)
dataset = TimeSeriesDataset.from_df(
df,
Expand Down
Loading