Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
# Evaluating on test set
test_precision,test_recall,test_Fmeasure=evaluate_micro_average(df_test['keys'].values,df_test['pred_keys'])
print('Precision=>',test_precision)
print('Recall=>',test_recall)
print('F-measure=>',test_Fmeasure)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment