Last active
June 12, 2019 17:09
-
-
Save StrikingLoo/81f40c9162edf306f0bf690c87e2cbaa 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
preds = conv_model.predict(x_valid) | |
preds = np.asarray([pred[0] for pred in preds]) | |
np.corrcoef(preds, labels_valid)[0][1] # 0.15292172 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment