質問編集履歴
2
誤字
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(
|
89
|
+
h = self.decoder(x[-12:],self)
|
90
90
|
out = self.f1(h)
|
91
91
|
|
92
92
|
return out
|
1
誤字
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
|
|