why cats_macro_auc value is 0.0 and cats_auc_per_type item also is None #13525
Unanswered
wuye251
asked this question in
Help: Coding & Implementations
Replies: 1 comment
-
How can i get praf with highest scoring as "positive" in multi-label. See from scorer.score_cats threshold params desc: is 0.0 get highest scoring in multi-label? But I'm get 1.0 between kinds of value. Scorer.score_cats(example_with_predicted, attr="cats", labels=labels, multi_label=True, threshold=0.0) {
"cats_score": 0,
"cats_score_desc": "macro AUC",
"cats_micro_p": 1,
"cats_micro_r": 1,
"cats_micro_f": 1,
"cats_macro_p": 0.75,
"cats_macro_r": 0.75,
"cats_macro_f": 0.75,
"cats_macro_auc": 0,
"cats_f_per_type": {
"表扬": {
"p": 1,
"r": 1,
"f": 1
},
"其他": {
"p": 1,
"r": 1,
"f": 1
},
"抱怨": {
"p": 1,
"r": 1,
"f": 1
},
"投诉": {
"p": 0,
"r": 0,
"f": 0
}
},
"cats_auc_per_type": {
"表扬": null,
"其他": null,
"抱怨": null,
"投诉": null
}
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
spacy version with 3.6 python version 3.10.
output:
Beta Was this translation helpful? Give feedback.
All reactions