Created
November 4, 2020 08:28
-
-
Save oscar-defelice/3914cfee97997b2f93201adccc433b26 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
| emb_dim = 64 | |
| dropout_rate = 0.3 | |
| n_labels = y.shape[1] | |
| learning_rate = 0.0006 | |
| loss = tf.keras.losses.CategoricalCrossentropy(from_logits=True) | |
| metric = tf.keras.metrics.CategoricalAccuracy('accuracy') | |
| opt = tf.keras.optimizers.Adam(learning_rate = learning_rate) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment