Training in progress, epoch 0
Browse files- .gitignore +1 -0
- config.json +65 -0
- preprocessor_config.json +22 -0
- pytorch_model.bin +3 -0
- runs/May26_22-33-39_project/1685140469.8039846/events.out.tfevents.1685140469.project.135666.1 +3 -0
- runs/May26_22-33-39_project/1685177105.5439537/events.out.tfevents.1685177105.project.135666.3 +3 -0
- runs/May26_22-33-39_project/1685185380.7121568/events.out.tfevents.1685185380.project.135666.5 +3 -0
- runs/May26_22-33-39_project/events.out.tfevents.1685140469.project.135666.0 +3 -0
- runs/May26_22-33-39_project/events.out.tfevents.1685177105.project.135666.2 +3 -0
- runs/May26_22-33-39_project/events.out.tfevents.1685185380.project.135666.4 +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,65 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "microsoft/swin-base-patch4-window7-224-in22k",
|
3 |
+
"architectures": [
|
4 |
+
"SwinForImageClassification"
|
5 |
+
],
|
6 |
+
"attention_probs_dropout_prob": 0.0,
|
7 |
+
"depths": [
|
8 |
+
2,
|
9 |
+
2,
|
10 |
+
18,
|
11 |
+
2
|
12 |
+
],
|
13 |
+
"drop_path_rate": 0.1,
|
14 |
+
"embed_dim": 128,
|
15 |
+
"encoder_stride": 32,
|
16 |
+
"hidden_act": "gelu",
|
17 |
+
"hidden_dropout_prob": 0.0,
|
18 |
+
"hidden_size": 1024,
|
19 |
+
"id2label": {
|
20 |
+
"0": "glioma",
|
21 |
+
"1": "meningioma",
|
22 |
+
"2": "notumor",
|
23 |
+
"3": "pituitary"
|
24 |
+
},
|
25 |
+
"image_size": 224,
|
26 |
+
"initializer_range": 0.02,
|
27 |
+
"label2id": {
|
28 |
+
"glioma": 0,
|
29 |
+
"meningioma": 1,
|
30 |
+
"notumor": 2,
|
31 |
+
"pituitary": 3
|
32 |
+
},
|
33 |
+
"layer_norm_eps": 1e-05,
|
34 |
+
"mlp_ratio": 4.0,
|
35 |
+
"model_type": "swin",
|
36 |
+
"num_channels": 3,
|
37 |
+
"num_heads": [
|
38 |
+
4,
|
39 |
+
8,
|
40 |
+
16,
|
41 |
+
32
|
42 |
+
],
|
43 |
+
"num_layers": 4,
|
44 |
+
"out_features": [
|
45 |
+
"stage4"
|
46 |
+
],
|
47 |
+
"out_indices": [
|
48 |
+
4
|
49 |
+
],
|
50 |
+
"patch_size": 4,
|
51 |
+
"path_norm": true,
|
52 |
+
"problem_type": "single_label_classification",
|
53 |
+
"qkv_bias": true,
|
54 |
+
"stage_names": [
|
55 |
+
"stem",
|
56 |
+
"stage1",
|
57 |
+
"stage2",
|
58 |
+
"stage3",
|
59 |
+
"stage4"
|
60 |
+
],
|
61 |
+
"torch_dtype": "float32",
|
62 |
+
"transformers_version": "4.29.2",
|
63 |
+
"use_absolute_embeddings": false,
|
64 |
+
"window_size": 7
|
65 |
+
}
|
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.485,
|
7 |
+
0.456,
|
8 |
+
0.406
|
9 |
+
],
|
10 |
+
"image_processor_type": "ViTImageProcessor",
|
11 |
+
"image_std": [
|
12 |
+
0.229,
|
13 |
+
0.224,
|
14 |
+
0.225
|
15 |
+
],
|
16 |
+
"resample": 3,
|
17 |
+
"rescale_factor": 0.00392156862745098,
|
18 |
+
"size": {
|
19 |
+
"height": 224,
|
20 |
+
"width": 224
|
21 |
+
}
|
22 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c024c9f473afa6d6679a9277acfe1a8f148b33f47a9eb6e1da8cc48fcf310d36
|
3 |
+
size 347601681
|
runs/May26_22-33-39_project/1685140469.8039846/events.out.tfevents.1685140469.project.135666.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:00ec1e6cdb486e4a83d0008446016206ef6a42b39ae1cd17ba1902391125e23e
|
3 |
+
size 6056
|
runs/May26_22-33-39_project/1685177105.5439537/events.out.tfevents.1685177105.project.135666.3
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cb3ef52ce85e8f57a3f6f7eb7a2020fc8d45e942809cf81eba1c88eb4dc1aa9b
|
3 |
+
size 6056
|
runs/May26_22-33-39_project/1685185380.7121568/events.out.tfevents.1685185380.project.135666.5
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c8be0e050e5fdf9443c81e54b0cb7cfe06dc978ce8dc02a5e374f0878e20bb78
|
3 |
+
size 6056
|
runs/May26_22-33-39_project/events.out.tfevents.1685140469.project.135666.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f2021f381b1da92fcac9360d6527713832df5e0cbdf72fce5c1deb0c73e5d458
|
3 |
+
size 4784
|
runs/May26_22-33-39_project/events.out.tfevents.1685177105.project.135666.2
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b249298dba37fe1420a11011c672fcb608b56e5bf85cff0393847eea8e4dbc74
|
3 |
+
size 4784
|
runs/May26_22-33-39_project/events.out.tfevents.1685185380.project.135666.4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c753060e75c3133f74e2685d14aaf19e3171359b508ac64d06e21e933b4fd7ed
|
3 |
+
size 5312
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:96d5bd56cb3deae42ada14fe757430a376b454dff99a8b8864722bb714caca7d
|
3 |
+
size 4027
|