Commit
·
fe90e59
1
Parent(s):
0501f34
Training in progress, epoch 0
Browse files- .gitignore +1 -0
- config.json +34 -0
- preprocessor_config.json +22 -0
- pytorch_model.bin +3 -0
- runs/Apr26_21-42-01_ce0ea415f93e/1682545352.332626/events.out.tfevents.1682545352.ce0ea415f93e.3497.1 +3 -0
- runs/Apr26_21-42-01_ce0ea415f93e/events.out.tfevents.1682545352.ce0ea415f93e.3497.0 +3 -0
- runs/Apr26_21-49-24_ce0ea415f93e/1682545776.1236334/events.out.tfevents.1682545776.ce0ea415f93e.3497.3 +3 -0
- runs/Apr26_21-49-24_ce0ea415f93e/events.out.tfevents.1682545776.ce0ea415f93e.3497.2 +3 -0
- runs/Apr26_21-55-41_ce0ea415f93e/1682546155.7224414/events.out.tfevents.1682546155.ce0ea415f93e.8878.1 +3 -0
- runs/Apr26_21-55-41_ce0ea415f93e/events.out.tfevents.1682546155.ce0ea415f93e.8878.0 +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "UnipaPolitoUnimore/vit-large-patch32-384-melanoma",
|
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": 1024,
|
11 |
+
"id2label": {
|
12 |
+
"0": "Melanoma",
|
13 |
+
"1": "Nevus",
|
14 |
+
"2": "Seborrheic_keratosis"
|
15 |
+
},
|
16 |
+
"image_size": 384,
|
17 |
+
"initializer_range": 0.02,
|
18 |
+
"intermediate_size": 4096,
|
19 |
+
"label2id": {
|
20 |
+
"Melanoma": 0,
|
21 |
+
"Nevus": 1,
|
22 |
+
"Seborrheic_keratosis": 2
|
23 |
+
},
|
24 |
+
"layer_norm_eps": 1e-12,
|
25 |
+
"model_type": "vit",
|
26 |
+
"num_attention_heads": 16,
|
27 |
+
"num_channels": 3,
|
28 |
+
"num_hidden_layers": 24,
|
29 |
+
"patch_size": 32,
|
30 |
+
"problem_type": "single_label_classification",
|
31 |
+
"qkv_bias": true,
|
32 |
+
"torch_dtype": "float32",
|
33 |
+
"transformers_version": "4.28.1"
|
34 |
+
}
|
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": 384,
|
20 |
+
"width": 384
|
21 |
+
}
|
22 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a9886c3d217aaa1029d759262d2795bfbefbaac6f6b8c25ffcf0d33f50fb9ecc
|
3 |
+
size 1222576941
|
runs/Apr26_21-42-01_ce0ea415f93e/1682545352.332626/events.out.tfevents.1682545352.ce0ea415f93e.3497.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:91fbaafc8784623ac26f67a8c3340311ac3ab98bb06f385133bab954bf865236
|
3 |
+
size 5967
|
runs/Apr26_21-42-01_ce0ea415f93e/events.out.tfevents.1682545352.ce0ea415f93e.3497.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b1b2a9a3fcafc6cbf1e0dc782cda1d2f0c448f9d1053056f3931bca7454e183a
|
3 |
+
size 4560
|
runs/Apr26_21-49-24_ce0ea415f93e/1682545776.1236334/events.out.tfevents.1682545776.ce0ea415f93e.3497.3
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a43ac13024f88a5970b48392fd1f1dcb1a84fbef14ef8f5da74caa6379f8cd0c
|
3 |
+
size 5967
|
runs/Apr26_21-49-24_ce0ea415f93e/events.out.tfevents.1682545776.ce0ea415f93e.3497.2
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b11a580c327bb5100d5a0b81c4668ae132fc4941b905981c4116072be89fa1c0
|
3 |
+
size 4406
|
runs/Apr26_21-55-41_ce0ea415f93e/1682546155.7224414/events.out.tfevents.1682546155.ce0ea415f93e.8878.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4b477d8cf9bd296583d1242294602e0f6d4a844209bae03e8606a32f029a3785
|
3 |
+
size 5967
|
runs/Apr26_21-55-41_ce0ea415f93e/events.out.tfevents.1682546155.ce0ea415f93e.8878.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5b7fbeceb46f477806569454b637a776efade110b0d09265f7e1aadbd9b137b7
|
3 |
+
size 6879
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b0089cbcd43e49f914f9e6beb5eb8c79b7bce92619d2aba8c117c07a11ff755c
|
3 |
+
size 3643
|