Upload config.json
Browse files- config.json +13 -0
config.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_type": "vit",
|
| 3 |
+
"num_labels": 2,
|
| 4 |
+
"id2label": {
|
| 5 |
+
"0": "Real",
|
| 6 |
+
"1": "Fake"
|
| 7 |
+
},
|
| 8 |
+
"label2id": {
|
| 9 |
+
"Real": 0,
|
| 10 |
+
"Fake": 1
|
| 11 |
+
},
|
| 12 |
+
"image_size": 224
|
| 13 |
+
}
|