Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save securetorobert/d67cd08f81d7baec6a819a69d8389f00 to your computer and use it in GitHub Desktop.
Save securetorobert/d67cd08f81d7baec6a819a69d8389f00 to your computer and use it in GitHub Desktop.
Neural Networks with Keras on Boston Housing data
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