SparkleDark commited on
Commit
b896695
·
verified ·
1 Parent(s): 47c919a

Training in progress, epoch 0

Browse files
config.json ADDED
@@ -0,0 +1,102 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "google/vit-base-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": 768,
11
+ "id2label": {
12
+ "0": "Siamese",
13
+ "1": "Birman",
14
+ "2": "shiba inu",
15
+ "3": "staffordshire bull terrier",
16
+ "4": "basset hound",
17
+ "5": "Bombay",
18
+ "6": "japanese chin",
19
+ "7": "chihuahua",
20
+ "8": "german shorthaired",
21
+ "9": "pomeranian",
22
+ "10": "beagle",
23
+ "11": "english cocker spaniel",
24
+ "12": "american pit bull terrier",
25
+ "13": "Ragdoll",
26
+ "14": "Persian",
27
+ "15": "Egyptian Mau",
28
+ "16": "miniature pinscher",
29
+ "17": "Sphynx",
30
+ "18": "Maine Coon",
31
+ "19": "keeshond",
32
+ "20": "yorkshire terrier",
33
+ "21": "havanese",
34
+ "22": "leonberger",
35
+ "23": "wheaten terrier",
36
+ "24": "american bulldog",
37
+ "25": "english setter",
38
+ "26": "boxer",
39
+ "27": "newfoundland",
40
+ "28": "Bengal",
41
+ "29": "samoyed",
42
+ "30": "British Shorthair",
43
+ "31": "great pyrenees",
44
+ "32": "Abyssinian",
45
+ "33": "pug",
46
+ "34": "saint bernard",
47
+ "35": "Russian Blue",
48
+ "36": "scottish terrier"
49
+ },
50
+ "image_size": 224,
51
+ "initializer_range": 0.02,
52
+ "intermediate_size": 3072,
53
+ "label2id": {
54
+ "Abyssinian": 32,
55
+ "Bengal": 28,
56
+ "Birman": 1,
57
+ "Bombay": 5,
58
+ "British Shorthair": 30,
59
+ "Egyptian Mau": 15,
60
+ "Maine Coon": 18,
61
+ "Persian": 14,
62
+ "Ragdoll": 13,
63
+ "Russian Blue": 35,
64
+ "Siamese": 0,
65
+ "Sphynx": 17,
66
+ "american bulldog": 24,
67
+ "american pit bull terrier": 12,
68
+ "basset hound": 4,
69
+ "beagle": 10,
70
+ "boxer": 26,
71
+ "chihuahua": 7,
72
+ "english cocker spaniel": 11,
73
+ "english setter": 25,
74
+ "german shorthaired": 8,
75
+ "great pyrenees": 31,
76
+ "havanese": 21,
77
+ "japanese chin": 6,
78
+ "keeshond": 19,
79
+ "leonberger": 22,
80
+ "miniature pinscher": 16,
81
+ "newfoundland": 27,
82
+ "pomeranian": 9,
83
+ "pug": 33,
84
+ "saint bernard": 34,
85
+ "samoyed": 29,
86
+ "scottish terrier": 36,
87
+ "shiba inu": 2,
88
+ "staffordshire bull terrier": 3,
89
+ "wheaten terrier": 23,
90
+ "yorkshire terrier": 20
91
+ },
92
+ "layer_norm_eps": 1e-12,
93
+ "model_type": "vit",
94
+ "num_attention_heads": 12,
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.2"
102
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6fcc5dc357a15b47469c32442bfb78cdeffda6919375abde1ad529d64d2d90af
3
+ size 345812216
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/Jul13_06-35-01_18c7bc249c50/events.out.tfevents.1720852513.18c7bc249c50.301.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b9370fa181dbac77eaf08bb7aeb9bbf126a44abfe851efcbd71365fa637facea
3
+ size 6659
runs/Jul13_06-36-49_18c7bc249c50/events.out.tfevents.1720852616.18c7bc249c50.301.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bb007fdc8841078c1cd7d82c6d7b915f456e6ce453f4fc1ad897da3695b17f2d
3
+ size 6659
runs/Jul13_06-36-49_18c7bc249c50/events.out.tfevents.1720852791.18c7bc249c50.301.2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7e16602f140719e18a66fd0be4150dcbf6bc0255875158283bbb20ade8652be7
3
+ size 6659
runs/Jul13_06-36-49_18c7bc249c50/events.out.tfevents.1720852925.18c7bc249c50.301.3 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:016a2690f77b7be78f0971609520139efbb92e0d12a83a104518db3bbb261589
3
+ size 6659
runs/Jul13_06-36-49_18c7bc249c50/events.out.tfevents.1720852985.18c7bc249c50.301.4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:76e0f68c53564db5dbaa8459549d8ddc82bc8a0d9ea17cd540d60fe43de11e06
3
+ size 6659
runs/Jul13_06-36-49_18c7bc249c50/events.out.tfevents.1720852994.18c7bc249c50.301.5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d442bd1dd20db63e63c1a16f24e7b1cf17b18a186480f0f21415e0d709f2b136
3
+ size 6659
runs/Jul13_06-36-49_18c7bc249c50/events.out.tfevents.1720853138.18c7bc249c50.301.6 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:71895630e6a6897eca76df3bd4981e3813f980436008a23d384a87fa277e8d49
3
+ size 6659
runs/Jul13_06-36-49_18c7bc249c50/events.out.tfevents.1720853224.18c7bc249c50.301.7 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5faceeda0ce4e421daf05afae66042d8d32174021fa0c12a09167c82d384b908
3
+ size 6659
runs/Jul13_06-36-49_18c7bc249c50/events.out.tfevents.1720853238.18c7bc249c50.301.8 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:17268ebbb426052a735b1f373ab5bc8d42612c107c71f85c7b981fd479132962
3
+ size 6659
runs/Jul13_06-36-49_18c7bc249c50/events.out.tfevents.1720853419.18c7bc249c50.301.9 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ddc3530421a623c902931b688231d341eba0521a215f87acc031eb127d01a2d5
3
+ size 7183
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2a97353e7d8d8e72ccd29f4611c5a0c5027b4bcb83136e090d3adae5865b5995
3
+ size 5176