We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, I am confused about the variable logits_bias. It seems that you make logits_bias not trainable in your code. (At line 170 in memn2n_kv.py)
logits_bias
automated-essay-grading/memn2n_kv.py
Line 170 in cda24d8
Other possible mistakes I found: 1.
automated-essay-grading/cv_train.py
Line 191 in cda24d8
sent_size_list
score_idx
Line 177 in cda24d8
logits
Thanks!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello, I am confused about the variable
logits_bias
. It seems that you makelogits_bias
not trainable in your code. (At line 170 in memn2n_kv.py)automated-essay-grading/memn2n_kv.py
Line 170 in cda24d8
Normally, shouldn't bias be trainable?
Other possible mistakes I found:
1.
automated-essay-grading/cv_train.py
Line 191 in cda24d8
Here
sent_size_list
is the list of all data(train+test), butscore_idx
is the index of train data.automated-essay-grading/memn2n_kv.py
Line 177 in cda24d8
why here
logits
are used to calculate cross entropy, but not the softmax result oflogits
.Thanks!
The text was updated successfully, but these errors were encountered: