Skip to content

Commit 0b0dfe1

Browse files
bug fixes in NBEATSEstimator (#74)
* spell correction in n_beats_ensemble * bug fix - NBEATSEstimator intialization
1 parent 16f0f9e commit 0b0dfe1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pts/model/n_beats/n_beats_ensemble.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ class NBEATSEnsembleEstimator(PyTorchEstimator):
170170
Arguments passed down to the individual estimators.
171171
"""
172172

173-
@validted()
173+
@validated()
174174
def __init__(
175175
self,
176176
freq: str,

pts/model/n_beats/n_beats_estimator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
)
3131

3232

33-
class NBEATSEstimator:
33+
class NBEATSEstimator(PyTorchEstimator):
3434
@validated()
3535
def __init__(
3636
self,

0 commit comments

Comments
 (0)