-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
Hi,
I want to use this model
model = tf.keras.Sequential([
tf.keras.layers.Input(shape=(6,)),
tf.keras.layers.Dense(32, activation='relu'),
tf.keras.layers.Dense(32, activation='relu'),
tf.keras.layers.Dense(4, activation='softmax')
])
model.compile(optimizer=tf.keras.optimizers.Adam(learning_rate=0.001),loss='mse')
to play snake game on an STM32. You mention that only Dense is implemented. Does Input can be implemented as a separate layer or must be included in Dense?
Metadata
Metadata
Assignees
Labels
No labels