Created
June 30, 2020 19:30
-
-
Save a-agmon/2950eb8db2579cc1d2fb33207e04cef0 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
#get the MSE or loss error term | |
predictions = autoencoder.predict(vec_seqs) | |
mse = np.mean(np.power(vec_seqs - predictions, 2), axis=1) | |
sequences['MSE'] = mse |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment