Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
nschaetti committed Jan 17, 2019
2 parents a2d672d + 2873bf5 commit fa2150a
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions echotorch/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
#

# Imports
import datasets
import models
import nn
import utils
from . import datasets
from . import models
from . import nn
from . import utils


# All EchoTorch's modules
Expand Down
2 changes: 1 addition & 1 deletion echotorch/datasets/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
from .NARMADataset import NARMADataset

__all__ = [
'LogisticMapDataset', 'MackeyGlassDataset', 'MemTestDataset', 'NARMADataset'
'LogisticMapDataset', 'MackeyGlassDataset', 'MemTestDataset', 'NARMADataset'
]
4 changes: 2 additions & 2 deletions echotorch/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@
# Copyright Nils Schaetti, University of Neuchâtel <nils.schaetti@unine.ch>

# Imports
from HNilsNet import HNilsNet
from NilsNet import NilsNet
from .HNilsNet import HNilsNet
from .NilsNet import NilsNet
2 changes: 1 addition & 1 deletion echotorch/nn/BDESN.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
import torch.nn as nn
from torch.autograd import Variable
from .BDESNCell import BDESNCell
from RRCell import RRCell
from .RRCell import RRCell


# Bi-directional Echo State Network module
Expand Down
2 changes: 1 addition & 1 deletion echotorch/nn/BDESNCell.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
import torch.sparse
import torch
import torch.nn as nn
from LiESNCell import LiESNCell
from .LiESNCell import LiESNCell
import numpy as np
from torch.autograd import Variable

Expand Down
2 changes: 1 addition & 1 deletion echotorch/nn/ESN.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
import torch.nn as nn
from torch.autograd import Variable
from . import ESNCell
from RRCell import RRCell
from .RRCell import RRCell


# Echo State Network module
Expand Down
4 changes: 2 additions & 2 deletions echotorch/nn/StackedESN.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
import echotorch.utils
from torch.autograd import Variable
from . import LiESNCell
from RRCell import RRCell
from ESNCell import ESNCell
from .RRCell import RRCell
from .ESNCell import ESNCell
import numpy as np


Expand Down

0 comments on commit fa2150a

Please sign in to comment.