回答:
私は自分の質問に対する答えを見つけ出しました。これが上記の答えに基づいたコードです。
from keras.layers import Input, Dense
from keras.models import Model
from keras.utils import plot_model
A1 = Input(shape=(30,),name='A1')
A2 = Dense(8, activation='relu',name='A2')(A1)
A3 = Dense(30, activation='relu',name='A3')(A2)
B2 = Dense(40, activation='relu',name='B2')(A2)
B3 = Dense(30, activation='relu',name='B3')(B2)
merged = Model(inputs=[A1],outputs=[A3,B3])
plot_model(merged,to_file='demo.png',show_shapes=True)
そして、これが私が欲しかった出力構造です:
Kerasには、モデルを定義する便利な方法があります:機能的なAPIを使用します。機能的なAPIを使用すると、レイヤの有向非循環グラフを定義でき、完全に任意のアーキテクチャを構築できます。あなたの例を考えてみましょう:
#A_data = np.zeros((1,30))
#A_labels = np.zeros((1,30))
#B_labels =np.zeros((1,30))
A1 = layers.Input(shape=(30,), name='A_input')
A2 = layers.Dense(8, activation='???')(A1)
A3 = layers.Dense(30, activation='???', name='A_output')(A2)
B2 = layers.Dense(40, activation='???')(A2)
B3 = layers.Dense(30, activation='???', name='B_output')(B2)
## define A
A = models.Model(inputs=A1, outputs=A3)
## define B
B = models.Model(inputs=A1, outputs=B3)
B.compile(optimizer='??',
loss={'B_output': '??'}
)
B.fit({'A_input': A_data},
{'B_output': B_labels},
epochs=??, batch_size=??)
だから、それだけです!結果は次の方法で確認できますB.summary()
。
Layer (type) Output Shape Param
A_input (InputLayer) (None, 30) 0
_________________________________________________________________
dense_8 (Dense) (None, 8) 248
______________________________________________________________
dense_9 (Dense) (None, 40) 360
_________________________________________________________________
B_output (Dense) (None, 30) 1230
Model
must be InputLayer
objectsです。受信した入力:テンソル。また、前述のように、機能APIを使用してモデルAとモデルBを別々に作成しました。私が探している答えは、連結関数を使用しているkerasドキュメントの「多入力および多出力モデル」のセクションに関係しているのではないかと思います(完全にはわかりません)。