私は、機械学習アルゴリズム(基本的なランダムフォレストおよび線形回帰タイプのもの)で動作する知識を少し自習しています。私は分岐して、KerasでRNNの学習を開始することにしました。通常在庫予測を含むほとんどの例を見ると、1列が機能日付でもう1列が出力である以外に、実装されている複数の機能の基本的な例を見つけることができませんでした。私が行方不明になっている重要な基本的なものまたは何かがありますか
誰かが例を持っているなら、私はそれを大いに感謝します。
ありがとう!
私は、機械学習アルゴリズム(基本的なランダムフォレストおよび線形回帰タイプのもの)で動作する知識を少し自習しています。私は分岐して、KerasでRNNの学習を開始することにしました。通常在庫予測を含むほとんどの例を見ると、1列が機能日付でもう1列が出力である以外に、実装されている複数の機能の基本的な例を見つけることができませんでした。私が行方不明になっている重要な基本的なものまたは何かがありますか
誰かが例を持っているなら、私はそれを大いに感謝します。
ありがとう!
回答:
リカレントニューラルネットワーク(RNN)は、シーケンスデータを学習するように設計されています。ご想像のとおり、彼らは間違いなく入力として複数の機能を取ることができます!KerasのRNN は、タイムステップTと特徴Fの 2D入力(T、F)を取ります(ここではバッチディメンションを無視しています)。
ただし、中間のタイムステップt = 1、2 ...(T -1)が常に必要なわけではありません。したがって、Kerasは両方のモードを柔軟にサポートします。すべてのTタイムステップを出力させるreturn_sequences=True
には、構築時にRNN(LSTM
またはなどGRU
)に渡します。最後のタイムステップt = Tのみが必要な場合return_sequences=False
は、使用します(return_sequences
コンストラクターに渡さない場合、これがデフォルトです)。
これらのモードの両方の例を以下に示します。
シーケンス全体を保持するLSTM(RNNのタイプ)をトレーニングする簡単な例を次に示します。この例では、各入力データポイントには2つのタイムステップがあり、それぞれに3つの特徴があります。出力データには2つのタイムステップ(return_sequences=True
)があり、それぞれに4つのデータポイントがあります(これはに渡すサイズであるためLSTM
)。
import keras.layers as L
import keras.models as M
import numpy
# The inputs to the model.
# We will create two data points, just for the example.
data_x = numpy.array([
# Datapoint 1
[
# Input features at timestep 1
[1, 2, 3],
# Input features at timestep 2
[4, 5, 6]
],
# Datapoint 2
[
# Features at timestep 1
[7, 8, 9],
# Features at timestep 2
[10, 11, 12]
]
])
# The desired model outputs.
# We will create two data points, just for the example.
data_y = numpy.array([
# Datapoint 1
[
# Target features at timestep 1
[101, 102, 103, 104],
# Target features at timestep 2
[105, 106, 107, 108]
],
# Datapoint 2
[
# Target features at timestep 1
[201, 202, 203, 204],
# Target features at timestep 2
[205, 206, 207, 208]
]
])
# Each input data point has 2 timesteps, each with 3 features.
# So the input shape (excluding batch_size) is (2, 3), which
# matches the shape of each data point in data_x above.
model_input = L.Input(shape=(2, 3))
# This RNN will return timesteps with 4 features each.
# Because return_sequences=True, it will output 2 timesteps, each
# with 4 features. So the output shape (excluding batch size) is
# (2, 4), which matches the shape of each data point in data_y above.
model_output = L.LSTM(4, return_sequences=True)(model_input)
# Create the model.
model = M.Model(input=model_input, output=model_output)
# You need to pick appropriate loss/optimizers for your problem.
# I'm just using these to make the example compile.
model.compile('sgd', 'mean_squared_error')
# Train
model.fit(data_x, data_y)
一方、シーケンスの最後のタイムステップのみを出力するLSTMをトレーニングする場合は、設定する必要がありますreturn_sequences=False
(またはFalse
デフォルトであるため、コンストラクタから完全に削除します)。data_y
最後のタイムステップのみを提供する必要があるため、出力データ(上記の例)を再配置する必要があります。したがって、この2番目の例では、各入力データポイントには2つのタイムステップがあり、それぞれに3つの特徴があります。ただし、出力データは、すべてのデータを単一のタイムステップにフラット化したため、各データポイントの単一のベクトルにすぎません。ただし、これらの各出力ベクトルには、まだ4つの機能があります(これは、私が渡すサイズだからですLSTM
)。
import keras.layers as L
import keras.models as M
import numpy
# The inputs to the model.
# We will create two data points, just for the example.
data_x = numpy.array([
# Datapoint 1
[
# Input features at timestep 1
[1, 2, 3],
# Input features at timestep 2
[4, 5, 6]
],
# Datapoint 2
[
# Features at timestep 1
[7, 8, 9],
# Features at timestep 2
[10, 11, 12]
]
])
# The desired model outputs.
# We will create two data points, just for the example.
data_y = numpy.array([
# Datapoint 1
# Target features at timestep 2
[105, 106, 107, 108],
# Datapoint 2
# Target features at timestep 2
[205, 206, 207, 208]
])
# Each input data point has 2 timesteps, each with 3 features.
# So the input shape (excluding batch_size) is (2, 3), which
# matches the shape of each data point in data_x above.
model_input = L.Input(shape=(2, 3))
# This RNN will return timesteps with 4 features each.
# Because return_sequences=False, it will output 2 timesteps, each
# with 4 features. So the output shape (excluding batch size) is
# (2, 4), which matches the shape of each data point in data_y above.
model_output = L.LSTM(4, return_sequences=False)(model_input)
# Create the model.
model = M.Model(input=model_input, output=model_output)
# You need to pick appropriate loss/optimizers for your problem.
# I'm just using these to make the example compile.
model.compile('sgd', 'mean_squared_error')
# Train
model.fit(data_x, data_y)
data_x
単純に1つのデータポイントが含まれ、そのデータポイントには4つのタイムステップがあり、それぞれ3次元です(同様data_y
に、同じ方法でマージする必要があります)。使用するタイムステップの数は、モデル化しようとしているもの(およびそのプロセスに関連するタイムステップの数)に依存します。