Training in progress, epoch 1
Browse files- config.json +58 -0
- model.safetensors +3 -0
- preprocessor_config.json +22 -0
- runs/Dec15_01-13-21_ip-172-16-23-166.us-west-2.compute.internal/events.out.tfevents.1702602845.ip-172-16-23-166.us-west-2.compute.internal.22306.0 +3 -0
- runs/Dec15_01-14-48_ip-172-16-23-166.us-west-2.compute.internal/events.out.tfevents.1702602890.ip-172-16-23-166.us-west-2.compute.internal.22306.1 +3 -0
- training_args.bin +3 -0
config.json
ADDED
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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": "Atelectasis",
|
13 |
+
"1": "Cardiomegaly",
|
14 |
+
"2": "Consolidation",
|
15 |
+
"3": "Edema",
|
16 |
+
"4": "Effusion",
|
17 |
+
"5": "Emphysema",
|
18 |
+
"6": "Fibrosis",
|
19 |
+
"7": "Hernia",
|
20 |
+
"8": "Infiltration",
|
21 |
+
"9": "Mass",
|
22 |
+
"10": "No Finding",
|
23 |
+
"11": "Nodule",
|
24 |
+
"12": "Pleural_Thickening",
|
25 |
+
"13": "Pneumonia",
|
26 |
+
"14": "Pneumothorax"
|
27 |
+
},
|
28 |
+
"image_size": 224,
|
29 |
+
"initializer_range": 0.02,
|
30 |
+
"intermediate_size": 3072,
|
31 |
+
"label2id": {
|
32 |
+
"Atelectasis": 0,
|
33 |
+
"Cardiomegaly": 1,
|
34 |
+
"Consolidation": 2,
|
35 |
+
"Edema": 3,
|
36 |
+
"Effusion": 4,
|
37 |
+
"Emphysema": 5,
|
38 |
+
"Fibrosis": 6,
|
39 |
+
"Hernia": 7,
|
40 |
+
"Infiltration": 8,
|
41 |
+
"Mass": 9,
|
42 |
+
"No Finding": 10,
|
43 |
+
"Nodule": 11,
|
44 |
+
"Pleural_Thickening": 12,
|
45 |
+
"Pneumonia": 13,
|
46 |
+
"Pneumothorax": 14
|
47 |
+
},
|
48 |
+
"layer_norm_eps": 1e-12,
|
49 |
+
"model_type": "vit",
|
50 |
+
"num_attention_heads": 12,
|
51 |
+
"num_channels": 3,
|
52 |
+
"num_hidden_layers": 12,
|
53 |
+
"patch_size": 16,
|
54 |
+
"problem_type": "single_label_classification",
|
55 |
+
"qkv_bias": true,
|
56 |
+
"torch_dtype": "float32",
|
57 |
+
"transformers_version": "4.36.0.dev0"
|
58 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3a2c8aee69826139c555cedc0137ec8fce906c838aa10a0bd749ed9c28c6178f
|
3 |
+
size 343263964
|
preprocessor_config.json
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"do_normalize": true,
|
3 |
+
"do_rescale": true,
|
4 |
+
"do_resize": true,
|
5 |
+
"image_mean": [
|
6 |
+
0.5,
|
7 |
+
0.5,
|
8 |
+
0.5
|
9 |
+
],
|
10 |
+
"image_processor_type": "ViTImageProcessor",
|
11 |
+
"image_std": [
|
12 |
+
0.5,
|
13 |
+
0.5,
|
14 |
+
0.5
|
15 |
+
],
|
16 |
+
"resample": 2,
|
17 |
+
"rescale_factor": 0.00392156862745098,
|
18 |
+
"size": {
|
19 |
+
"height": 224,
|
20 |
+
"width": 224
|
21 |
+
}
|
22 |
+
}
|
runs/Dec15_01-13-21_ip-172-16-23-166.us-west-2.compute.internal/events.out.tfevents.1702602845.ip-172-16-23-166.us-west-2.compute.internal.22306.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:bf195f7532b5f7db7e143c31c35bf11e135595eddf15906983a9d636792a7302
|
3 |
+
size 5057
|
runs/Dec15_01-14-48_ip-172-16-23-166.us-west-2.compute.internal/events.out.tfevents.1702602890.ip-172-16-23-166.us-west-2.compute.internal.22306.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2c4dfee986d98904abbaf47c67c0d3c85c972dfa05e281602c6239e2b5456807
|
3 |
+
size 9269
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:09b0238f0b3244c5d48810ec6fabd925cdc8414c7c081844ab293abc59bf6b1f
|
3 |
+
size 4792
|