pavanavn commited on
Commit
8111e9a
1 Parent(s): 1f66e7c

Training in progress, epoch 1

Browse files
config.json ADDED
@@ -0,0 +1,82 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "R12160213",
13
+ "1": "R12413584-648.0413.3.158",
14
+ "2": "R12999253",
15
+ "3": "R12160303",
16
+ "4": "R12413314-648.0413.3.131",
17
+ "5": "R12413313-648.0413.3.031",
18
+ "6": "R12163118",
19
+ "7": "R12413343-648.0413.3.034",
20
+ "8": "R12998153",
21
+ "9": "R12413243-648.0413.3.024",
22
+ "10": "R12949153",
23
+ "11": "R12393633-114.0393.3.063",
24
+ "12": "R12413803-648.0413.3.080",
25
+ "13": "R12164153",
26
+ "14": "R12391103-114.0391.3.010",
27
+ "15": "R12638163-541.0638.3.016",
28
+ "16": "R12413193-648.0413.3.019",
29
+ "17": "R12391633-114.0391.3.063",
30
+ "18": "R12162153",
31
+ "19": "R12160103",
32
+ "20": "R12413073-648.0413.3.007",
33
+ "21": "R12413613-648.0413.3.061",
34
+ "22": "R12413573",
35
+ "23": "R12391153-114.0391.3.015",
36
+ "24": "R12064253",
37
+ "25": "R12416393-557.0416.3.039",
38
+ "26": "R12638173-541.0638.3.017"
39
+ },
40
+ "image_size": 224,
41
+ "initializer_range": 0.02,
42
+ "intermediate_size": 3072,
43
+ "label2id": {
44
+ "R12064253": 24,
45
+ "R12160103": 19,
46
+ "R12160213": 0,
47
+ "R12160303": 3,
48
+ "R12162153": 18,
49
+ "R12163118": 6,
50
+ "R12164153": 13,
51
+ "R12391103-114.0391.3.010": 14,
52
+ "R12391153-114.0391.3.015": 23,
53
+ "R12391633-114.0391.3.063": 17,
54
+ "R12393633-114.0393.3.063": 11,
55
+ "R12413073-648.0413.3.007": 20,
56
+ "R12413193-648.0413.3.019": 16,
57
+ "R12413243-648.0413.3.024": 9,
58
+ "R12413313-648.0413.3.031": 5,
59
+ "R12413314-648.0413.3.131": 4,
60
+ "R12413343-648.0413.3.034": 7,
61
+ "R12413573": 22,
62
+ "R12413584-648.0413.3.158": 1,
63
+ "R12413613-648.0413.3.061": 21,
64
+ "R12413803-648.0413.3.080": 12,
65
+ "R12416393-557.0416.3.039": 25,
66
+ "R12638163-541.0638.3.016": 15,
67
+ "R12638173-541.0638.3.017": 26,
68
+ "R12949153": 10,
69
+ "R12998153": 8,
70
+ "R12999253": 2
71
+ },
72
+ "layer_norm_eps": 1e-12,
73
+ "model_type": "vit",
74
+ "num_attention_heads": 12,
75
+ "num_channels": 3,
76
+ "num_hidden_layers": 12,
77
+ "patch_size": 16,
78
+ "problem_type": "single_label_classification",
79
+ "qkv_bias": true,
80
+ "torch_dtype": "float32",
81
+ "transformers_version": "4.41.2"
82
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5d03d68245d688ed8bee82abe59494dedc54ccc21e1f8bc9140b43174430d6b6
3
+ size 343300876
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
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:df28a9181f97184af347c94a882ca470656939cf6ee52fb00ad7cc9528c0e375
3
+ size 5176