From 1d60aa145046d0af27c2cce5482dc39cb9b440c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franz=20Kir=C3=A1ly?= Date: Thu, 26 Dec 2024 01:15:13 +0100 Subject: [PATCH] [ENH] refactor `__init__` modules to no longer contain classes - preparatory commit (#1739) Preparatory commit for https://github.com/sktime/pytorch-forecasting/pull/1738 to ensure file edit history is retained, by ensuring that this preparatory PR only moves files. --- pytorch_forecasting/models/deepar/{__init__.py => _deepar.py} | 0 pytorch_forecasting/models/mlp/{__init__.py => _decodermlp.py} | 0 pytorch_forecasting/models/nbeats/{__init__.py => _nbeats.py} | 0 pytorch_forecasting/models/nhits/{__init__.py => _nhits.py} | 0 pytorch_forecasting/models/rnn/{__init__.py => _rnn.py} | 0 .../models/temporal_fusion_transformer/{__init__.py => _tft.py} | 0 6 files changed, 0 insertions(+), 0 deletions(-) rename pytorch_forecasting/models/deepar/{__init__.py => _deepar.py} (100%) rename pytorch_forecasting/models/mlp/{__init__.py => _decodermlp.py} (100%) rename pytorch_forecasting/models/nbeats/{__init__.py => _nbeats.py} (100%) rename pytorch_forecasting/models/nhits/{__init__.py => _nhits.py} (100%) rename pytorch_forecasting/models/rnn/{__init__.py => _rnn.py} (100%) rename pytorch_forecasting/models/temporal_fusion_transformer/{__init__.py => _tft.py} (100%) diff --git a/pytorch_forecasting/models/deepar/__init__.py b/pytorch_forecasting/models/deepar/_deepar.py similarity index 100% rename from pytorch_forecasting/models/deepar/__init__.py rename to pytorch_forecasting/models/deepar/_deepar.py diff --git a/pytorch_forecasting/models/mlp/__init__.py b/pytorch_forecasting/models/mlp/_decodermlp.py similarity index 100% rename from pytorch_forecasting/models/mlp/__init__.py rename to pytorch_forecasting/models/mlp/_decodermlp.py diff --git a/pytorch_forecasting/models/nbeats/__init__.py b/pytorch_forecasting/models/nbeats/_nbeats.py similarity index 100% rename from pytorch_forecasting/models/nbeats/__init__.py rename to pytorch_forecasting/models/nbeats/_nbeats.py diff --git a/pytorch_forecasting/models/nhits/__init__.py b/pytorch_forecasting/models/nhits/_nhits.py similarity index 100% rename from pytorch_forecasting/models/nhits/__init__.py rename to pytorch_forecasting/models/nhits/_nhits.py diff --git a/pytorch_forecasting/models/rnn/__init__.py b/pytorch_forecasting/models/rnn/_rnn.py similarity index 100% rename from pytorch_forecasting/models/rnn/__init__.py rename to pytorch_forecasting/models/rnn/_rnn.py diff --git a/pytorch_forecasting/models/temporal_fusion_transformer/__init__.py b/pytorch_forecasting/models/temporal_fusion_transformer/_tft.py similarity index 100% rename from pytorch_forecasting/models/temporal_fusion_transformer/__init__.py rename to pytorch_forecasting/models/temporal_fusion_transformer/_tft.py