Training in progress, epoch 0
Browse files- config.json +70 -0
- model.safetensors +3 -0
- preprocessor_config.json +27 -0
- training_args.bin +3 -0
config.json
ADDED
@@ -0,0 +1,70 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "facebook/dinov2-small",
|
3 |
+
"apply_layernorm": true,
|
4 |
+
"architectures": [
|
5 |
+
"Dinov2ForImageClassification"
|
6 |
+
],
|
7 |
+
"attention_probs_dropout_prob": 0.0,
|
8 |
+
"drop_path_rate": 0.0,
|
9 |
+
"finetuning_task": "image-classification",
|
10 |
+
"hidden_act": "gelu",
|
11 |
+
"hidden_dropout_prob": 0.0,
|
12 |
+
"hidden_size": 384,
|
13 |
+
"id2label": {
|
14 |
+
"0": "ambiguous",
|
15 |
+
"1": "closeUp",
|
16 |
+
"2": "detail",
|
17 |
+
"3": "extremeLongShot",
|
18 |
+
"4": "fullShot",
|
19 |
+
"5": "longShot",
|
20 |
+
"6": "mediumCloseUp",
|
21 |
+
"7": "mediumShot"
|
22 |
+
},
|
23 |
+
"image_size": 518,
|
24 |
+
"initializer_range": 0.02,
|
25 |
+
"label2id": {
|
26 |
+
"ambiguous": "0",
|
27 |
+
"closeUp": "1",
|
28 |
+
"detail": "2",
|
29 |
+
"extremeLongShot": "3",
|
30 |
+
"fullShot": "4",
|
31 |
+
"longShot": "5",
|
32 |
+
"mediumCloseUp": "6",
|
33 |
+
"mediumShot": "7"
|
34 |
+
},
|
35 |
+
"layer_norm_eps": 1e-06,
|
36 |
+
"layerscale_value": 1.0,
|
37 |
+
"mlp_ratio": 4,
|
38 |
+
"model_type": "dinov2",
|
39 |
+
"num_attention_heads": 6,
|
40 |
+
"num_channels": 3,
|
41 |
+
"num_hidden_layers": 12,
|
42 |
+
"out_features": [
|
43 |
+
"stage12"
|
44 |
+
],
|
45 |
+
"out_indices": [
|
46 |
+
12
|
47 |
+
],
|
48 |
+
"patch_size": 14,
|
49 |
+
"problem_type": "single_label_classification",
|
50 |
+
"qkv_bias": true,
|
51 |
+
"reshape_hidden_states": true,
|
52 |
+
"stage_names": [
|
53 |
+
"stem",
|
54 |
+
"stage1",
|
55 |
+
"stage2",
|
56 |
+
"stage3",
|
57 |
+
"stage4",
|
58 |
+
"stage5",
|
59 |
+
"stage6",
|
60 |
+
"stage7",
|
61 |
+
"stage8",
|
62 |
+
"stage9",
|
63 |
+
"stage10",
|
64 |
+
"stage11",
|
65 |
+
"stage12"
|
66 |
+
],
|
67 |
+
"torch_dtype": "float32",
|
68 |
+
"transformers_version": "4.38.0.dev0",
|
69 |
+
"use_swiglu_ffn": false
|
70 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:79efeeeec08e4e06b5f8490e590e6a91d0a23da88401b91f00112284a5e7f805
|
3 |
+
size 88276288
|
preprocessor_config.json
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"crop_size": {
|
3 |
+
"height": 224,
|
4 |
+
"width": 224
|
5 |
+
},
|
6 |
+
"do_center_crop": true,
|
7 |
+
"do_convert_rgb": true,
|
8 |
+
"do_normalize": true,
|
9 |
+
"do_rescale": true,
|
10 |
+
"do_resize": true,
|
11 |
+
"image_mean": [
|
12 |
+
0.485,
|
13 |
+
0.456,
|
14 |
+
0.406
|
15 |
+
],
|
16 |
+
"image_processor_type": "BitImageProcessor",
|
17 |
+
"image_std": [
|
18 |
+
0.229,
|
19 |
+
0.224,
|
20 |
+
0.225
|
21 |
+
],
|
22 |
+
"resample": 3,
|
23 |
+
"rescale_factor": 0.00392156862745098,
|
24 |
+
"size": {
|
25 |
+
"shortest_edge": 256
|
26 |
+
}
|
27 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b5758a1243631eafdd79dd87ee2c08aebab115f15ce4088630b8a144f66b4f7f
|
3 |
+
size 4920
|