You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want try to change the code from line 116 in "sequence_labeler.py",
from: input_vars_train = [word_ids, char_ids, char_mask, label_ids, learningrate]
to input_vars_train = [word_ids, char_ids, # myowntag_ids, char_mask, # myowntag_mask, label_ids, learningrate]
and then I got this error:
ValueError: dimension mismatch in args to gemm
I don't know why is this happen, can you help me to explain why is this happen?
Thank you very much!
Best Regards!
The text was updated successfully, but these errors were encountered:
Difficult to say. What line triggers the error?
Make sure you are passing the correct number of arguments to the updated train() function in sequence_labeling_experiment.py:130
I want try to change the code from line 116 in "sequence_labeler.py",
from:
input_vars_train = [word_ids, char_ids, char_mask, label_ids, learningrate]
to
input_vars_train = [word_ids, char_ids, # myowntag_ids, char_mask, # myowntag_mask, label_ids, learningrate]
and then I got this error:
ValueError: dimension mismatch in args to gemm
I don't know why is this happen, can you help me to explain why is this happen?
Thank you very much!
Best Regards!
The text was updated successfully, but these errors were encountered: