eyad-silx commited on
Commit
04500ea
·
verified ·
1 Parent(s): a18d161

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +22 -1
config.json CHANGED
@@ -1 +1,22 @@
1
- {"architecture": "densenet121", "num_labels": 3}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "densenet-finetuned",
3
+ "architectures": [
4
+ "DenseNetForImageClassification"
5
+ ],
6
+ "model_type": "image-classification",
7
+ "num_labels": 3,
8
+ "hidden_size": 1024,
9
+ "label2id": {
10
+ "Real": 0,
11
+ "AI": 1,
12
+ "Other": 2
13
+ },
14
+ "id2label": {
15
+ "0": "Real",
16
+ "1": "AI",
17
+ "2": "Other"
18
+ },
19
+ "torchvision_backbone": "densenet121",
20
+ "fine_tuned": true,
21
+ "framework": "pytorch"
22
+ }