Skip to content

Commit

Permalink
small fix of test_patch_tst
Browse files Browse the repository at this point in the history
  • Loading branch information
technocreep committed Oct 16, 2024
1 parent 257b24a commit 342860d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/unit/core/models/model_impl/test_patch_tst.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ def ts_input_data():
return train_test_data_setup(train_input, validation_blocks=None)


def test_nbeats_model(ts_input_data):
def test_patch_tst_model(ts_input_data):
train, test = ts_input_data

with IndustrialModels():
model = PipelineBuilder().add_node('patch_tst_model', params=dict(
epochs=10
)).build()
model = PipelineBuilder().add_node('patch_tst_model',
params=dict(epochs=10)
).build()

model.fit(train)
forecast = model.predict(test)
Expand Down

0 comments on commit 342860d

Please sign in to comment.