Skip to content

Commit

Permalink
Merge branch 'dev' into mamba
Browse files Browse the repository at this point in the history
  • Loading branch information
kashif committed Jan 18, 2024
2 parents 82cf695 + 4a481ca commit f7a72c0
Show file tree
Hide file tree
Showing 6 changed files with 1,013 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/gluonts/torch/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"PyTorchPredictor",
"DeepNPTSEstimator",
"DeepAREstimator",
"TiDEEstimator",
"SimpleFeedForwardEstimator",
"TemporalFusionTransformerEstimator",
"WaveNetEstimator",
Expand All @@ -28,6 +29,7 @@
from .model.predictor import PyTorchPredictor
from .model.deep_npts import DeepNPTSEstimator
from .model.deepar import DeepAREstimator
from .model.tide import TiDEEstimator
from .model.simple_feedforward import SimpleFeedForwardEstimator
from .model.tft import TemporalFusionTransformerEstimator
from .model.wavenet import WaveNetEstimator
Expand Down
18 changes: 18 additions & 0 deletions src/gluonts/torch/model/tide/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# A copy of the License is located at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# or in the "license" file accompanying this file. This file is distributed
# on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
# express or implied. See the License for the specific language governing
# permissions and limitations under the License.

from .module import TiDEModel
from .lightning_module import TiDELightningModule
from .estimator import TiDEEstimator

__all__ = ["TiDEModel", "TiDELightningModule", "TiDEEstimator"]
Loading

0 comments on commit f7a72c0

Please sign in to comment.