Created
July 12, 2018 23:53
-
-
Save securetorobert/d67cd08f81d7baec6a819a69d8389f00 to your computer and use it in GitHub Desktop.
Neural Networks with Keras on Boston Housing data
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
X = scaled_train_df.drop(target, axis=1).values | |
Y = scaled_train_df[[target]].values | |
# Train the model | |
model.fit( | |
X[10:], | |
Y[10:], | |
epochs=50, | |
shuffle=True, | |
verbose=2 | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment