Update config.json
Browse files- config.json +8 -3
config.json
CHANGED
|
@@ -4,16 +4,21 @@
|
|
| 4 |
"models": [
|
| 5 |
{
|
| 6 |
"name": "initial",
|
| 7 |
-
"path": "
|
| 8 |
"description": "Initial version of the tagger model"
|
| 9 |
},
|
| 10 |
{
|
| 11 |
"name": "refined",
|
| 12 |
-
"path": "
|
| 13 |
"description": "Refined version of the tagger model with improved performance"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
}
|
| 15 |
],
|
| 16 |
-
"default_model": "
|
| 17 |
"description": "A custom tagging model with initial and refined versions",
|
| 18 |
"version": "1.0.0",
|
| 19 |
"tags": ["tagger", "classification"],
|
|
|
|
| 4 |
"models": [
|
| 5 |
{
|
| 6 |
"name": "initial",
|
| 7 |
+
"path": "model/model_initial_only.pt",
|
| 8 |
"description": "Initial version of the tagger model"
|
| 9 |
},
|
| 10 |
{
|
| 11 |
"name": "refined",
|
| 12 |
+
"path": "model/model_refined.pt",
|
| 13 |
"description": "Refined version of the tagger model with improved performance"
|
| 14 |
+
},
|
| 15 |
+
{
|
| 16 |
+
"name": "onnx",
|
| 17 |
+
"path": "model_initial.onnx",
|
| 18 |
+
"description": "Onnx model"
|
| 19 |
}
|
| 20 |
],
|
| 21 |
+
"default_model": "initial",
|
| 22 |
"description": "A custom tagging model with initial and refined versions",
|
| 23 |
"version": "1.0.0",
|
| 24 |
"tags": ["tagger", "classification"],
|