Sharris commited on
Commit
0ef3acb
·
verified ·
1 Parent(s): 683f332

Upload config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. config.json +24 -0
config.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": ["ResNet50V2"],
3
+ "model_type": "image-classification",
4
+ "task": "image-classification",
5
+ "id2label": {
6
+ "0": "Youth (0-20)",
7
+ "1": "Young Adult (21-40)",
8
+ "2": "Middle Age (41-60)",
9
+ "3": "Senior (61-80)",
10
+ "4": "Elderly (81-100)"
11
+ },
12
+ "label2id": {
13
+ "Youth (0-20)": 0,
14
+ "Young Adult (21-40)": 1,
15
+ "Middle Age (41-60)": 2,
16
+ "Senior (61-80)": 3,
17
+ "Elderly (81-100)": 4
18
+ },
19
+ "num_labels": 5,
20
+ "image_size": [224, 224],
21
+ "num_channels": 3,
22
+ "framework": "tf",
23
+ "library_name": "tensorflow"
24
+ }