質問編集履歴
2
誤字
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
|
177
|
+
h = self.decoder(x[-12:],self)
|
178
178
|
|
179
179
|
out = self.f1(h)
|
180
180
|
|
1
誤字
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
|
|