ROBINADC/BiGRU-CRF-with-Attention-for-NER

你好 为什么 最后正确率 召回率 F1的值是一样的呢

Closed this issue · 2 comments

你好 为什么 最后正确率 召回率 F1的值是一样的呢

They are supposed to be different.
You may verify it by adding following lines to train.py at some proper positions.

from sklearn.metrics import classification_report

print(classification_report(y_true, y_pred, digits=4))

I would like to have a try .thanks