Custom Text Classification: How to train model and validate no matching labels
https://language.cognitive.azure.com/customText/projects/classification
I'm trying to train a model on text classification but can't seem to get the correct scores on the model preview, as the tests show under model performance that all the ones without a label are incorrect. I am importing the project via JSON. See documentation.
I tried multiple ways to get it to match. I tried using a the category "None", which is what's used as the default in the Language Studio, and that showed as no match. I tried "No prediction" which is what's used and the same happened. I tried
{"classes": []}
I also tried
{"classes": [{"category": null]}
as well as
{"classes": [{"category": ""]}
All of these attempts resulted as an import error.
If I go to the "Testing Deployments" tab and enter some text that doesn't get labeled, the json that gets returned is
{ "classes": [] }
Nothing seems to work, what am I missing here?