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

Create config.yaml

Browse files
Files changed (1) hide show
  1. config.yaml +26 -0
config.yaml ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ model_info:
2
+ name: camie-tagger
3
+ version: 1.0.0
4
+ type: pytorch
5
+
6
+ models:
7
+ - name: initial
8
+ path: app/exported-model/model_initial_only.pt
9
+ description: Initial version of the tagger model
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
+ default_model: refined
16
+
17
+ framework:
18
+ name: pytorch
19
+ version: "1.X"
20
+
21
+ metadata:
22
+ task: classification
23
+ tags:
24
+ - tagger
25
+ - classification
26
+ license: GPL-3.0