deepshah23 commited on
Commit
b810efc
·
verified ·
1 Parent(s): c0a7ecb

Created a config.json

Browse files
Files changed (1) hide show
  1. config.json +30 -0
config.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "pytorch_cnn_digit_blank_classifier",
3
+ "num_classes": 11,
4
+ "id2label": {
5
+ "0": "0",
6
+ "1": "1",
7
+ "2": "2",
8
+ "3": "3",
9
+ "4": "4",
10
+ "5": "5",
11
+ "6": "6",
12
+ "7": "7",
13
+ "8": "8",
14
+ "9": "9",
15
+ "10": "blank"
16
+ },
17
+ "label2id": {
18
+ "0": 0,
19
+ "1": 1,
20
+ "2": 2,
21
+ "3": 3,
22
+ "4": 4,
23
+ "5": 5,
24
+ "6": 6,
25
+ "7": 7,
26
+ "8": 8,
27
+ "9": 9,
28
+ "blank": 10
29
+ }
30
+ }