Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
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
Prev Previous commit
Next Next commit
Update: use _tags instead of _more_tags (sklearn type)
  • Loading branch information
Ghxst07 committed Jul 11, 2025
commit 635d2d6253ec5fddb2700d9b1a17bb59aaf86a8d
7 changes: 2 additions & 5 deletions sktime/regression/deep_learning/cntc.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ class CNTCRegressor(BaseDeepRegressor):
],
"maintainers": ["James-Large", "Withington", "AurumnPegasus", "nilesh05apr"],
"python_dependencies": ["tensorflow"],
"tests:skip_all": True,
"tests:skip_by_name": ["test_fit_idempotent"]
}

def __init__(
Expand Down Expand Up @@ -250,11 +252,6 @@ def _predict(self, X, **kwargs):
preds = self.model_.predict([X2, X, X], self.batch_size, **kwargs)
preds = np.squeeze(preds, axis=-1)
return preds
def _more_tags(self):
return {
"tests:skip_all": True,
"tests:skip_by_name": ["test_fit_idempotent"]
}


@classmethod
Expand Down