Created
July 12, 2018 23:56
-
-
Save securetorobert/7f6e4d186eff4217376ca78fe2b6eab0 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
#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