mirror of https://github.com/explosion/spaCy.git
Don't multiply accuracy by 100
This commit is contained in:
parent
26296ab223
commit
d21d2c2e59
|
@ -120,7 +120,7 @@ function formatAccuracy(data) {
|
|||
? null
|
||||
: {
|
||||
label,
|
||||
value: (value * 100).toFixed(2),
|
||||
value: value.toFixed(2),
|
||||
help: MODEL_META[label],
|
||||
}
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue