Camais03 commited on
Commit
b69543f
·
verified ·
1 Parent(s): ed4c2e6

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +21 -0
config.json ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_name": "camie-tagger",
3
+ "model_type": "pytorch",
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"],
20
+ "license": "gpl-3.0"
21
+ }