Created
August 13, 2018 07:12
-
-
Save omarsar/1b1269a2f7ce9f03778b4ab631877ac1 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
# scale units | |
X_max, _ = torch.max(X, 0) | |
xPredicted_max, _ = torch.max(xPredicted, 0) | |
X = torch.div(X, X_max) | |
xPredicted = torch.div(xPredicted, xPredicted_max) | |
y = y / 100 # max test score is 100 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment