Camais03 commited on
Commit
1e436dc
·
verified ·
1 Parent(s): 4e74041

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +8 -3
config.json CHANGED
@@ -4,16 +4,21 @@
4
  "models": [
5
  {
6
  "name": "initial",
7
- "path": "app/exported-model/model_initial_only.pt",
8
  "description": "Initial version of the tagger model"
9
  },
10
  {
11
  "name": "refined",
12
- "path": "app/exported-model/model_refined.pt",
13
  "description": "Refined version of the tagger model with improved performance"
 
 
 
 
 
14
  }
15
  ],
16
- "default_model": "refined",
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"],