IntentClassifier / config.json
nvkhanh86's picture
Upload 3 files
5a491ae verified
Raw
History Blame Contribute Delete
423 Bytes
Invalid JSON:Expected double-quoted property name in JSONat line 4, column 35
{
"model_type": "onnx",
"framework": "onnxruntime",
"task": "text-classification", // or "text-classification", "ner", etc.
"input_names": ["input"],
"output_names": ["output"],
"input_shape": [1, 3, 224, 224], // update this based on your model
"output_shape": [1, 1000], // update based on your model
"labels": ["label", "sentence"] // optional, especially useful for classification
}