hemlatachanne commited on
Commit
d4babb1
·
verified ·
1 Parent(s): b2310cc

Training in progress, epoch 0

Browse files
config.json ADDED
@@ -0,0 +1,110 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "google/vit-hybrid-base-bit-384",
3
+ "architectures": [
4
+ "ViTHybridForImageClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.0,
7
+ "backbone": null,
8
+ "backbone_config": {
9
+ "depths": [
10
+ 3,
11
+ 4,
12
+ 9
13
+ ],
14
+ "embedding_dynamic_padding": true,
15
+ "global_padding": "SAME",
16
+ "layer_type": "bottleneck",
17
+ "model_type": "bit",
18
+ "out_features": [
19
+ "stage3"
20
+ ],
21
+ "out_indices": [
22
+ 3
23
+ ],
24
+ "stage_names": [
25
+ "stem",
26
+ "stage1",
27
+ "stage2",
28
+ "stage3"
29
+ ]
30
+ },
31
+ "backbone_featmap_shape": [
32
+ 1,
33
+ 1024,
34
+ 24,
35
+ 24
36
+ ],
37
+ "backbone_kwargs": null,
38
+ "hidden_act": "gelu",
39
+ "hidden_dropout_prob": 0.0,
40
+ "hidden_size": 768,
41
+ "id2label": {
42
+ "0": "Asian Green Bee-Eater",
43
+ "1": "Brown-Headed Barbet",
44
+ "2": "Cattle Egret",
45
+ "3": "Common Kingfisher",
46
+ "4": "Common Myna",
47
+ "5": "Common Rosefinch",
48
+ "6": "Common Tailorbird",
49
+ "7": "Coppersmith Barbet",
50
+ "8": "Forest Wagtail",
51
+ "9": "Gray Wagtail",
52
+ "10": "Hoopoe",
53
+ "11": "House Crow",
54
+ "12": "Indian Grey Hornbill",
55
+ "13": "Indian Peacock",
56
+ "14": "Indian Pitta",
57
+ "15": "Indian Roller",
58
+ "16": "Jungle Babbler",
59
+ "17": "Northern Lapwing",
60
+ "18": "Red-Wattled Lapwing",
61
+ "19": "Ruddy Shelduck",
62
+ "20": "Rufous Treepie",
63
+ "21": "Sarus Crane",
64
+ "22": "White Wagtail",
65
+ "23": "White-Breasted Kingfisher",
66
+ "24": "White-Breasted Waterhen"
67
+ },
68
+ "image_size": 384,
69
+ "initializer_range": 0.02,
70
+ "intermediate_size": 3072,
71
+ "label2id": {
72
+ "Asian Green Bee-Eater": 0,
73
+ "Brown-Headed Barbet": 1,
74
+ "Cattle Egret": 2,
75
+ "Common Kingfisher": 3,
76
+ "Common Myna": 4,
77
+ "Common Rosefinch": 5,
78
+ "Common Tailorbird": 6,
79
+ "Coppersmith Barbet": 7,
80
+ "Forest Wagtail": 8,
81
+ "Gray Wagtail": 9,
82
+ "Hoopoe": 10,
83
+ "House Crow": 11,
84
+ "Indian Grey Hornbill": 12,
85
+ "Indian Peacock": 13,
86
+ "Indian Pitta": 14,
87
+ "Indian Roller": 15,
88
+ "Jungle Babbler": 16,
89
+ "Northern Lapwing": 17,
90
+ "Red-Wattled Lapwing": 18,
91
+ "Ruddy Shelduck": 19,
92
+ "Rufous Treepie": 20,
93
+ "Sarus Crane": 21,
94
+ "White Wagtail": 22,
95
+ "White-Breasted Kingfisher": 23,
96
+ "White-Breasted Waterhen": 24
97
+ },
98
+ "layer_norm_eps": 1e-12,
99
+ "model_type": "vit-hybrid",
100
+ "num_attention_heads": 12,
101
+ "num_channels": 3,
102
+ "num_hidden_layers": 12,
103
+ "patch_size": 1,
104
+ "problem_type": "single_label_classification",
105
+ "qkv_bias": true,
106
+ "torch_dtype": "float32",
107
+ "transformers_version": "4.38.2",
108
+ "use_pretrained_backbone": false,
109
+ "use_timm_backbone": false
110
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a61a6257f0681a3e5034d60709863747d03d17729c3065bca2cb1bf5cc624cfc
3
+ size 392851684
preprocessor_config.json ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "crop_size": {
3
+ "height": 384,
4
+ "width": 384
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.5,
13
+ 0.5,
14
+ 0.5
15
+ ],
16
+ "image_processor_type": "ViTHybridImageProcessor",
17
+ "image_std": [
18
+ 0.5,
19
+ 0.5,
20
+ 0.5
21
+ ],
22
+ "resample": 3,
23
+ "rescale_factor": 0.00392156862745098,
24
+ "size": {
25
+ "shortest_edge": 384
26
+ }
27
+ }
runs/Apr03_09-54-55_986189f66671/events.out.tfevents.1712138171.986189f66671.1154.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6bf5c80482e0fec43d2f6e22d0022c7b4d1e0451d0dc9d6305ec50daa42b7287
3
+ size 18615
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f70258d0f92070f55741ff3f1aab2ac26cbf9561f99ec72b3d4e45e6e359f9ec
3
+ size 4920