Create config.json
Browse files- config.json +17 -0
config.json
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": [
|
3 |
+
"onnxForImageClassification"
|
4 |
+
],
|
5 |
+
"num_channels": 2,
|
6 |
+
"model_type": "onnx",
|
7 |
+
"downsample_in_first_stage": false,
|
8 |
+
"id2label": {
|
9 |
+
"0": "reallife",
|
10 |
+
"1": "secondlife"
|
11 |
+
},
|
12 |
+
"label2id": {
|
13 |
+
"reallife": 0,
|
14 |
+
"secondlife": 1
|
15 |
+
},
|
16 |
+
"transformers_version": "4.42.4"
|
17 |
+
}
|