Skip to content

Commit

Permalink
add docstring for network
Browse files Browse the repository at this point in the history
  • Loading branch information
furushchev committed Jul 17, 2018
1 parent 2810be1 commit 336dd90
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions chainervr/models/conv_lstm/conv_lstm.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@


class ConvLSTM(chainer.Chain):
"""Reconstruction-Prediction Network using Convolutional LSTM"""
def __init__(self, n_channels, hidden_channels=None,
in_episodes=None, out_episodes=None,
patch_size=(128, 128),
Expand Down
1 change: 1 addition & 0 deletions chainervr/models/unsupervised_videos/lstm.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@


class RPLSTM(chainer.Chain):
"""Reconstruction-Prediction LSTM"""
def __init__(self, n_channels, patch_size, n_layers=None, n_hidden=None, predict=True,
in_episodes=None, out_episodes=None):
super(RPLSTM, self).__init__()
Expand Down

0 comments on commit 336dd90

Please sign in to comment.