3

I've trained an NER model with the use of Spacy, and I would like to test the accuracy on a test dataset. What would be the best way to perform this?

Adnos
  • 81
  • 3

1 Answers1

2

You should use the evaluate command to evaluate the test set. It would look like this:

spacy evaluate ./my-model ./test-data.spacy
polm23
  • 343
  • 1
  • 8