質問編集履歴

2

誤字

2020/09/01 12:16

投稿

ShunyaTabata
ShunyaTabata

スコア11

test CHANGED
@@ -1 +1 @@
1
- LSTMを用いたEncoderDecoderを実し、特徴量抽出をしたい
1
+ 時系列データに対しLSTMを用いたEncoderDecoderを実し、特徴量抽出をしたい
test CHANGED
@@ -174,7 +174,7 @@
174
174
 
175
175
  states = self.encoder(x)
176
176
 
177
- h = self.decoder(x_,self)
177
+ h = self.decoder(x[-12:],self)
178
178
 
179
179
  out = self.f1(h)
180
180
 

1

誤字

2020/09/01 12:16

投稿

ShunyaTabata
ShunyaTabata

スコア11

test CHANGED
File without changes
test CHANGED
@@ -46,7 +46,7 @@
46
46
 
47
47
  https://github.com/aybchan/uber-time-series/blob/master/data.py
48
48
 
49
-
49
+ ※もちろん任意の1次元時系列データを用いても大丈夫です。
50
50
 
51
51
 
52
52