teratail header banner
teratail header banner
質問するログイン新規登録

質問編集履歴

2

誤字

2020/09/01 12:16

投稿

ShunyaTabata
ShunyaTabata

スコア11

title CHANGED
@@ -1,1 +1,1 @@
1
- LSTMを用いたEncoderDecoderを実し、特徴量抽出をしたい
1
+ 時系列データに対しLSTMを用いたEncoderDecoderを実し、特徴量抽出をしたい
body CHANGED
@@ -86,7 +86,7 @@
86
86
 
87
87
  def forward(self, x):
88
88
  states = self.encoder(x)
89
- h = self.decoder(x_,self)
89
+ h = self.decoder(x[-12:],self)
90
90
  out = self.f1(h)
91
91
 
92
92
  return out

1

誤字

2020/09/01 12:16

投稿

ShunyaTabata
ShunyaTabata

スコア11

title CHANGED
File without changes
body CHANGED
@@ -22,8 +22,8 @@
22
22
  まずこちらを作業ディレクトリに入れてください。
23
23
  データ読み込み用です。
24
24
  https://github.com/aybchan/uber-time-series/blob/master/data.py
25
+ ※もちろん任意の1次元時系列データを用いても大丈夫です。
25
26
 
26
-
27
27
  ```python
28
28
 
29
29