tuandunghcmut commited on
Commit
2b75888
1 Parent(s): 2b8ee56

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.40.0"
102
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:18c54a40c6f14b2c911da3cff7df31ecd98cb8da3085bd1955295f4e28fc8161
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/Apr25_07-18-47_82b7cec4d6a1/events.out.tfevents.1714029542.82b7cec4d6a1.210.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa50415d734c51f5fb6b19e05000ab993892d2c784f7f0d41a0dabdd7f69ef55
3
+ size 7045
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:df9e62fc8167d73bc88841628ee514004bb659051f073e21c476c8abf15d081f
3
+ size 5048