groderg commited on
Commit
4ea4c26
1 Parent(s): 350b793

Training in progress, epoch 1

Browse files
config.json ADDED
@@ -0,0 +1,107 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "facebook/dinov2-large",
3
+ "apply_layernorm": true,
4
+ "architectures": [
5
+ "Dinov2ForImageClassification"
6
+ ],
7
+ "attention_probs_dropout_prob": 0.0,
8
+ "drop_path_rate": 0.0,
9
+ "hidden_act": "gelu",
10
+ "hidden_dropout_prob": 0.0,
11
+ "hidden_size": 1024,
12
+ "id2label": {
13
+ "0": "ALGAE",
14
+ "1": "Acr",
15
+ "2": "Acr_Br",
16
+ "3": "Anem",
17
+ "4": "CCA",
18
+ "5": "Ech",
19
+ "6": "Fts",
20
+ "7": "Gal",
21
+ "8": "Gon",
22
+ "9": "Mtp",
23
+ "10": "P",
24
+ "11": "Poc",
25
+ "12": "Por",
26
+ "13": "R",
27
+ "14": "RDC",
28
+ "15": "S",
29
+ "16": "SG",
30
+ "17": "Sarg",
31
+ "18": "Ser",
32
+ "19": "Slt",
33
+ "20": "UNK"
34
+ },
35
+ "image_size": 518,
36
+ "initializer_range": 0.02,
37
+ "label2id": {
38
+ "ALGAE": 0,
39
+ "Acr": 1,
40
+ "Acr_Br": 2,
41
+ "Anem": 3,
42
+ "CCA": 4,
43
+ "Ech": 5,
44
+ "Fts": 6,
45
+ "Gal": 7,
46
+ "Gon": 8,
47
+ "Mtp": 9,
48
+ "P": 10,
49
+ "Poc": 11,
50
+ "Por": 12,
51
+ "R": 13,
52
+ "RDC": 14,
53
+ "S": 15,
54
+ "SG": 16,
55
+ "Sarg": 17,
56
+ "Ser": 18,
57
+ "Slt": 19,
58
+ "UNK": 20
59
+ },
60
+ "layer_norm_eps": 1e-06,
61
+ "layerscale_value": 1.0,
62
+ "mlp_ratio": 4,
63
+ "model_type": "dinov2",
64
+ "num_attention_heads": 16,
65
+ "num_channels": 3,
66
+ "num_hidden_layers": 24,
67
+ "out_features": [
68
+ "stage24"
69
+ ],
70
+ "out_indices": [
71
+ 24
72
+ ],
73
+ "patch_size": 14,
74
+ "problem_type": "single_label_classification",
75
+ "qkv_bias": true,
76
+ "reshape_hidden_states": true,
77
+ "stage_names": [
78
+ "stem",
79
+ "stage1",
80
+ "stage2",
81
+ "stage3",
82
+ "stage4",
83
+ "stage5",
84
+ "stage6",
85
+ "stage7",
86
+ "stage8",
87
+ "stage9",
88
+ "stage10",
89
+ "stage11",
90
+ "stage12",
91
+ "stage13",
92
+ "stage14",
93
+ "stage15",
94
+ "stage16",
95
+ "stage17",
96
+ "stage18",
97
+ "stage19",
98
+ "stage20",
99
+ "stage21",
100
+ "stage22",
101
+ "stage23",
102
+ "stage24"
103
+ ],
104
+ "torch_dtype": "float32",
105
+ "transformers_version": "4.44.2",
106
+ "use_swiglu_ffn": false
107
+ }
logs/events.out.tfevents.1727754543.datavisu4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6ffe06d3bebd0b91d689f2b522ab528091660c4d2f25590ab22f1e256353a9ea
3
+ size 8050
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:308725070df2067b2835fd8e414f0ca3736f6f51f151f6462c795f8dc7c730f9
3
+ size 1228086988
preprocessor_config.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "crop_size": {
3
+ "height": 224,
4
+ "width": 224
5
+ },
6
+ "do_center_crop": false,
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
+ "height": 518,
26
+ "width": 518
27
+ }
28
+ }
runs/events.out.tfevents.1727754518.datavisu4 ADDED
File without changes
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6121a609c82938b12564809fa5db1e918f28fa08c4dde5e514fb006d471ea414
3
+ size 5368
transforms.json ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "train_transforms": [
3
+ {
4
+ "operation": "PreProcess"
5
+ },
6
+ {
7
+ "operation": "Resize",
8
+ "probability": 1.0
9
+ },
10
+ {
11
+ "operation": "RandomHorizontalFlip",
12
+ "probability": 0.25
13
+ },
14
+ {
15
+ "operation": "RandomVerticalFlip",
16
+ "probability": 0.25
17
+ },
18
+ {
19
+ "operation": "ColorJiggle",
20
+ "probability": 0.25
21
+ },
22
+ {
23
+ "operation": "RandomPerspective",
24
+ "probability": 0.25
25
+ },
26
+ {
27
+ "operation": "Normalize",
28
+ "probability": 1.0
29
+ }
30
+ ],
31
+ "val_transforms": [
32
+ {
33
+ "operation": "PreProcess"
34
+ },
35
+ {
36
+ "operation": "Resize",
37
+ "probability": 1.0
38
+ },
39
+ {
40
+ "operation": "Normalize",
41
+ "probability": 1.0
42
+ }
43
+ ]
44
+ }