mbiarreta commited on
Commit
6438e75
·
verified ·
1 Parent(s): c6b5cd8

Training in progress, step 100

Browse files
config.json ADDED
@@ -0,0 +1,112 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_fpn": false,
3
+ "architectures": [
4
+ "BeitForImageClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.0,
7
+ "auxiliary_channels": 256,
8
+ "auxiliary_concat_input": false,
9
+ "auxiliary_loss_weight": 0.4,
10
+ "auxiliary_num_convs": 1,
11
+ "drop_path_rate": 0.1,
12
+ "hidden_act": "gelu",
13
+ "hidden_dropout_prob": 0.0,
14
+ "hidden_size": 768,
15
+ "id2label": {
16
+ "0": "American Black Bear",
17
+ "1": "American Crow",
18
+ "10": "Eastern Fox Squirrel",
19
+ "11": "Eastern Gray Squirrel",
20
+ "12": "Grey Fox",
21
+ "13": "Horse",
22
+ "14": "Northern Raccoon",
23
+ "15": "Red Fox",
24
+ "16": "Striped Skunk",
25
+ "17": "Vehicle",
26
+ "18": "Virginia Opossum",
27
+ "19": "White_Tailed_Deer",
28
+ "2": "Bird",
29
+ "20": "Wild Turkey",
30
+ "21": "Woodchuck",
31
+ "3": "Bobcat",
32
+ "4": "Chicken",
33
+ "5": "Coyote",
34
+ "6": "Dog",
35
+ "7": "Domestic Cat",
36
+ "8": "Eastern Chipmunk",
37
+ "9": "Eastern Cottontail"
38
+ },
39
+ "image_size": 224,
40
+ "initializer_range": 0.02,
41
+ "intermediate_size": 3072,
42
+ "label2id": {
43
+ "American Black Bear": "0",
44
+ "American Crow": "1",
45
+ "Bird": "2",
46
+ "Bobcat": "3",
47
+ "Chicken": "4",
48
+ "Coyote": "5",
49
+ "Dog": "6",
50
+ "Domestic Cat": "7",
51
+ "Eastern Chipmunk": "8",
52
+ "Eastern Cottontail": "9",
53
+ "Eastern Fox Squirrel": "10",
54
+ "Eastern Gray Squirrel": "11",
55
+ "Grey Fox": "12",
56
+ "Horse": "13",
57
+ "Northern Raccoon": "14",
58
+ "Red Fox": "15",
59
+ "Striped Skunk": "16",
60
+ "Vehicle": "17",
61
+ "Virginia Opossum": "18",
62
+ "White_Tailed_Deer": "19",
63
+ "Wild Turkey": "20",
64
+ "Woodchuck": "21"
65
+ },
66
+ "layer_norm_eps": 1e-12,
67
+ "layer_scale_init_value": 0.1,
68
+ "model_type": "beit",
69
+ "num_attention_heads": 12,
70
+ "num_channels": 3,
71
+ "num_hidden_layers": 12,
72
+ "out_features": [
73
+ "stage12"
74
+ ],
75
+ "out_indices": [
76
+ 12
77
+ ],
78
+ "patch_size": 16,
79
+ "pool_scales": [
80
+ 1,
81
+ 2,
82
+ 3,
83
+ 6
84
+ ],
85
+ "problem_type": "single_label_classification",
86
+ "reshape_hidden_states": true,
87
+ "semantic_loss_ignore_index": 255,
88
+ "stage_names": [
89
+ "stem",
90
+ "stage1",
91
+ "stage2",
92
+ "stage3",
93
+ "stage4",
94
+ "stage5",
95
+ "stage6",
96
+ "stage7",
97
+ "stage8",
98
+ "stage9",
99
+ "stage10",
100
+ "stage11",
101
+ "stage12"
102
+ ],
103
+ "torch_dtype": "float32",
104
+ "transformers_version": "4.51.3",
105
+ "use_absolute_position_embeddings": false,
106
+ "use_auxiliary_head": true,
107
+ "use_mask_token": false,
108
+ "use_mean_pooling": true,
109
+ "use_relative_position_bias": true,
110
+ "use_shared_relative_position_bias": false,
111
+ "vocab_size": 8192
112
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7add7215f3e9cb4d2ff5fcdf8eb12f9b3aef3e9688cf367142a61669ab31cf82
3
+ size 343141848
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_normalize": true,
8
+ "do_reduce_labels": false,
9
+ "do_rescale": true,
10
+ "do_resize": true,
11
+ "image_mean": [
12
+ 0.5,
13
+ 0.5,
14
+ 0.5
15
+ ],
16
+ "image_processor_type": "BeitImageProcessor",
17
+ "image_std": [
18
+ 0.5,
19
+ 0.5,
20
+ 0.5
21
+ ],
22
+ "resample": 2,
23
+ "rescale_factor": 0.00392156862745098,
24
+ "size": {
25
+ "height": 224,
26
+ "width": 224
27
+ }
28
+ }
runs/May05_17-35-20_ede8bb3dec7f/events.out.tfevents.1746466544.ede8bb3dec7f.505.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9328258f7a807d6cbbcc810130da23c3a3726675feec45e83001f02408006e2b
3
+ size 9146
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4eac9c5d39a6d426c3fc4fc7827fba0c20219cfbe1fdd917716ca00961d761ce
3
+ size 5304