Shikun commited on
Commit
f3700e5
1 Parent(s): f6f51e9

Training in progress, epoch 1

Browse files
config.json ADDED
@@ -0,0 +1,102 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "WinKawaks/vit-tiny-patch16-224",
3
+ "architectures": [
4
+ "ViTForImageClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.0,
7
+ "encoder_stride": 16,
8
+ "hidden_act": "gelu",
9
+ "hidden_dropout_prob": 0.0,
10
+ "hidden_size": 192,
11
+ "id2label": {
12
+ "0": "Abyssinian",
13
+ "1": "Bengal",
14
+ "2": "Birman",
15
+ "3": "Bombay",
16
+ "4": "British Shorthair",
17
+ "5": "Egyptian Mau",
18
+ "6": "Maine Coon",
19
+ "7": "Persian",
20
+ "8": "Ragdoll",
21
+ "9": "Russian Blue",
22
+ "10": "Siamese",
23
+ "11": "Sphynx",
24
+ "12": "american bulldog",
25
+ "13": "american pit bull terrier",
26
+ "14": "basset hound",
27
+ "15": "beagle",
28
+ "16": "boxer",
29
+ "17": "chihuahua",
30
+ "18": "english cocker spaniel",
31
+ "19": "english setter",
32
+ "20": "german shorthaired",
33
+ "21": "great pyrenees",
34
+ "22": "havanese",
35
+ "23": "japanese chin",
36
+ "24": "keeshond",
37
+ "25": "leonberger",
38
+ "26": "miniature pinscher",
39
+ "27": "newfoundland",
40
+ "28": "pomeranian",
41
+ "29": "pug",
42
+ "30": "saint bernard",
43
+ "31": "samoyed",
44
+ "32": "scottish terrier",
45
+ "33": "shiba inu",
46
+ "34": "staffordshire bull terrier",
47
+ "35": "wheaten terrier",
48
+ "36": "yorkshire terrier"
49
+ },
50
+ "image_size": 224,
51
+ "initializer_range": 0.02,
52
+ "intermediate_size": 768,
53
+ "label2id": {
54
+ "Abyssinian": 0,
55
+ "Bengal": 1,
56
+ "Birman": 2,
57
+ "Bombay": 3,
58
+ "British Shorthair": 4,
59
+ "Egyptian Mau": 5,
60
+ "Maine Coon": 6,
61
+ "Persian": 7,
62
+ "Ragdoll": 8,
63
+ "Russian Blue": 9,
64
+ "Siamese": 10,
65
+ "Sphynx": 11,
66
+ "american bulldog": 12,
67
+ "american pit bull terrier": 13,
68
+ "basset hound": 14,
69
+ "beagle": 15,
70
+ "boxer": 16,
71
+ "chihuahua": 17,
72
+ "english cocker spaniel": 18,
73
+ "english setter": 19,
74
+ "german shorthaired": 20,
75
+ "great pyrenees": 21,
76
+ "havanese": 22,
77
+ "japanese chin": 23,
78
+ "keeshond": 24,
79
+ "leonberger": 25,
80
+ "miniature pinscher": 26,
81
+ "newfoundland": 27,
82
+ "pomeranian": 28,
83
+ "pug": 29,
84
+ "saint bernard": 30,
85
+ "samoyed": 31,
86
+ "scottish terrier": 32,
87
+ "shiba inu": 33,
88
+ "staffordshire bull terrier": 34,
89
+ "wheaten terrier": 35,
90
+ "yorkshire terrier": 36
91
+ },
92
+ "layer_norm_eps": 1e-12,
93
+ "model_type": "vit",
94
+ "num_attention_heads": 3,
95
+ "num_channels": 3,
96
+ "num_hidden_layers": 12,
97
+ "patch_size": 16,
98
+ "problem_type": "single_label_classification",
99
+ "qkv_bias": true,
100
+ "torch_dtype": "float32",
101
+ "transformers_version": "4.41.0"
102
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b0f8ec635e0b184f6433c9273de8a4418c452c3bc111d62f85caef4858a34e2e
3
+ size 22148956
preprocessor_config.json ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_valid_processor_keys": [
3
+ "images",
4
+ "do_resize",
5
+ "size",
6
+ "resample",
7
+ "do_rescale",
8
+ "rescale_factor",
9
+ "do_normalize",
10
+ "image_mean",
11
+ "image_std",
12
+ "return_tensors",
13
+ "data_format",
14
+ "input_data_format"
15
+ ],
16
+ "do_normalize": true,
17
+ "do_rescale": true,
18
+ "do_resize": true,
19
+ "image_mean": [
20
+ 0.5,
21
+ 0.5,
22
+ 0.5
23
+ ],
24
+ "image_processor_type": "ViTImageProcessor",
25
+ "image_std": [
26
+ 0.5,
27
+ 0.5,
28
+ 0.5
29
+ ],
30
+ "resample": 2,
31
+ "rescale_factor": 0.00392156862745098,
32
+ "size": {
33
+ "height": 224,
34
+ "width": 224
35
+ }
36
+ }
runs/May26_05-29-08_7c6e2d05fe89/events.out.tfevents.1716701554.7c6e2d05fe89.18915.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5cdf0a1402419832d5b1498bbf1250443ec078abdb1f3257c5c85ed350b5f110
3
+ size 4184
runs/May26_05-29-08_7c6e2d05fe89/events.out.tfevents.1716701582.7c6e2d05fe89.18915.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5b2eafaba31962e13720fb9fbd76813ddfc6d8d8506092d5e9421430c0e681ba
3
+ size 7135
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4d8b41bdcfa69011bbd080256449889c184639a8613d059eeff897fadf63d8b6
3
+ size 5112