Created
April 19, 2019 12:27
-
-
Save NMZivkovic/32b4c5d06ab33450add4f7bdcca3dfe0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import tensorflow as tf | |
from tensorflow.keras import Sequential | |
from tensorflow.keras.layers import Dense | |
model = Sequential() | |
model.add(Dense(3, input_dim=2, activation='relu')) | |
model.add(Dense(1, activation='softmax')) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment