Skip to content

Instantly share code, notes, and snippets.

@chaserileyroberts
Last active February 7, 2020 20:06
Show Gist options
  • Save chaserileyroberts/0ca22ff900df624a31c6bd800b5b8ea4 to your computer and use it in GitHub Desktop.
Save chaserileyroberts/0ca22ff900df624a31c6bd800b5b8ea4 to your computer and use it in GitHub Desktop.
Dense = tf.keras.layers.Dense
fc_model = tf.keras.Sequential(
[
tf.keras.Input(shape=(2,)),
Dense(1024, activation=tf.nn.relu),
Dense(1024, activation=tf.nn.relu),
Dense(1, activation=None)
]
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment