KabeerAmjad commited on
Commit
96ad777
·
verified ·
1 Parent(s): 08a40f7

Rename comfig.json to config.json

Browse files
Files changed (2) hide show
  1. comfig.json +0 -0
  2. config.json +30 -0
comfig.json DELETED
File without changes
config.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "resnet50",
3
+ "num_labels": 11,
4
+ "id2label": {
5
+ "0": "apple_pie",
6
+ "1": "cheesecake",
7
+ "2": "chicken_curry",
8
+ "3": "french_fries",
9
+ "4": "fried_rice",
10
+ "5": "hamburger",
11
+ "6": "hot_dog",
12
+ "7": "ice_cream",
13
+ "8": "omelette",
14
+ "9": "pizza",
15
+ "10": "sushi"
16
+ },
17
+ "label2id": {
18
+ "apple_pie": 0,
19
+ "cheesecake": 1,
20
+ "chicken_curry": 2,
21
+ "french_fries": 3,
22
+ "fried_rice": 4,
23
+ "hamburger": 5,
24
+ "hot_dog": 6,
25
+ "ice_cream": 7,
26
+ "omelette": 8,
27
+ "pizza": 9,
28
+ "sushi": 10
29
+ }
30
+ }