elenaThevalley
commited on
Commit
•
08abfe0
1
Parent(s):
c30d10f
Training in progress, epoch 0
Browse files- config.json +54 -0
- preprocessor_config.json +22 -0
- pytorch_model.bin +3 -0
- training_args.bin +3 -0
config.json
ADDED
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "microsoft/resnet-50",
|
3 |
+
"architectures": [
|
4 |
+
"ResNetForImageClassification"
|
5 |
+
],
|
6 |
+
"depths": [
|
7 |
+
3,
|
8 |
+
4,
|
9 |
+
6,
|
10 |
+
3
|
11 |
+
],
|
12 |
+
"downsample_in_first_stage": false,
|
13 |
+
"embedding_size": 64,
|
14 |
+
"hidden_act": "relu",
|
15 |
+
"hidden_sizes": [
|
16 |
+
256,
|
17 |
+
512,
|
18 |
+
1024,
|
19 |
+
2048
|
20 |
+
],
|
21 |
+
"id2label": {
|
22 |
+
"0": "DRINK",
|
23 |
+
"1": "FOOD",
|
24 |
+
"2": "INSIDE",
|
25 |
+
"3": "MENU",
|
26 |
+
"4": "OUTSIDE"
|
27 |
+
},
|
28 |
+
"label2id": {
|
29 |
+
"DRINK": 0,
|
30 |
+
"FOOD": 1,
|
31 |
+
"INSIDE": 2,
|
32 |
+
"MENU": 3,
|
33 |
+
"OUTSIDE": 4
|
34 |
+
},
|
35 |
+
"layer_type": "bottleneck",
|
36 |
+
"model_type": "resnet",
|
37 |
+
"num_channels": 3,
|
38 |
+
"out_features": [
|
39 |
+
"stage4"
|
40 |
+
],
|
41 |
+
"out_indices": [
|
42 |
+
4
|
43 |
+
],
|
44 |
+
"problem_type": "single_label_classification",
|
45 |
+
"stage_names": [
|
46 |
+
"stem",
|
47 |
+
"stage1",
|
48 |
+
"stage2",
|
49 |
+
"stage3",
|
50 |
+
"stage4"
|
51 |
+
],
|
52 |
+
"torch_dtype": "float32",
|
53 |
+
"transformers_version": "4.33.2"
|
54 |
+
}
|
preprocessor_config.json
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"crop_pct": 0.875,
|
3 |
+
"do_normalize": true,
|
4 |
+
"do_rescale": true,
|
5 |
+
"do_resize": true,
|
6 |
+
"image_mean": [
|
7 |
+
0.485,
|
8 |
+
0.456,
|
9 |
+
0.406
|
10 |
+
],
|
11 |
+
"image_processor_type": "ConvNextImageProcessor",
|
12 |
+
"image_std": [
|
13 |
+
0.229,
|
14 |
+
0.224,
|
15 |
+
0.225
|
16 |
+
],
|
17 |
+
"resample": 3,
|
18 |
+
"rescale_factor": 0.00392156862745098,
|
19 |
+
"size": {
|
20 |
+
"shortest_edge": 224
|
21 |
+
}
|
22 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:dd0f76f1e8ab1d0e851e3d33951c0ce09c00a8052a3295e7803639178ef90b9f
|
3 |
+
size 94395085
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2ef94d9593e22e4d4bfc3e708a11c058400bf285accb69b03ff0565b74000a97
|
3 |
+
size 4091
|