Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save securetorobert/7f6e4d186eff4217376ca78fe2b6eab0 to your computer and use it in GitHub Desktop.
Save securetorobert/7f6e4d186eff4217376ca78fe2b6eab0 to your computer and use it in GitHub Desktop.
Neural Networks with Keras on Boston Housing data
#inference
prediction = model.predict(X[:1])
y_0 = prediction[0][0]
print('Prediction with scaling - {}',format(y_0))
y_0 -= added
y_0 /= multiplied_by
print("Housing Price Prediction - ${}".format(y_0))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment