Skip to content

Instantly share code, notes, and snippets.

@dalequark
Created December 12, 2019 21:06
Show Gist options
  • Save dalequark/5d9575d388f998f39847992444f7250c to your computer and use it in GitHub Desktop.
Save dalequark/5d9575d388f998f39847992444f7250c to your computer and use it in GitHub Desktop.
hello_world_keras.py
model = tf.keras.models.Sequential([
tf.keras.layers.Dense(512, activation='relu'),
tf.keras.layers.Dropout(0.2),
tf.keras.layers.Dense(32, activation='relu'),
tf.keras.layers.Dense(1, activation='softmax')
])
model.compile(optimizer='adam',
loss='sparse_categorical_crossentropy'),
metrics=['accuracy']))
model.fit(x_train, y_train, epochs=5)
model.evaluate(x_test, y_test)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment