Skip to content

Commit 560ef39

Browse files
authored
[BREAKING] Rename modules (#511)
* Re-organize and deprecations * nam.models.base to nam.train.lightning_module * Remove recurrent.LSTMCore * Refactor lightning module tests to new file * Black * typo * nam.models._base to nam.models.base
1 parent f2c3ff9 commit 560ef39

17 files changed

+742
-858
lines changed

nam/models/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
NAM's neural networks
77
"""
88

9-
from . import _base # noqa F401
9+
from . import base # noqa F401
1010
from . import exportable # noqa F401
1111
from . import losses # noqa F401
12-
from . import wavenet # noqa F401
13-
from .base import Model # noqa F401
14-
from .linear import Linear # noqa F401
1512
from .conv_net import ConvNet # noqa F401
13+
from .linear import Linear # noqa F401
14+
from .recurrent import LSTM # noqa F401
15+
from .wavenet import WaveNet # noqa F401

nam/models/_base.py

Lines changed: 0 additions & 256 deletions
This file was deleted.

0 commit comments

Comments
 (0)