raedinkhaled
commited on
Commit
·
4f269e0
1
Parent(s):
f238fad
Training in progress, epoch 0
Browse files- .gitignore +1 -0
- config.json +48 -0
- preprocessor_config.json +17 -0
- pytorch_model.bin +3 -0
- runs/Jun18_17-26-04_d696d3c41904/1655573202.6452746/events.out.tfevents.1655573202.d696d3c41904.81.1 +3 -0
- runs/Jun18_17-26-04_d696d3c41904/events.out.tfevents.1655573202.d696d3c41904.81.0 +3 -0
- runs/Jun18_17-31-23_d696d3c41904/1655573504.1174939/events.out.tfevents.1655573504.d696d3c41904.81.3 +3 -0
- runs/Jun18_17-31-23_d696d3c41904/events.out.tfevents.1655573504.d696d3c41904.81.2 +3 -0
- runs/Jun18_17-34-05_d696d3c41904/1655573663.2624373/events.out.tfevents.1655573663.d696d3c41904.81.5 +3 -0
- runs/Jun18_17-34-05_d696d3c41904/events.out.tfevents.1655573663.d696d3c41904.81.4 +3 -0
- runs/Jun18_17-49-59_d696d3c41904/1655574618.3890936/events.out.tfevents.1655574618.d696d3c41904.81.7 +3 -0
- runs/Jun18_17-49-59_d696d3c41904/events.out.tfevents.1655574618.d696d3c41904.81.6 +3 -0
- runs/Jun18_18-01-04_d696d3c41904/1655575279.6560137/events.out.tfevents.1655575279.d696d3c41904.81.9 +3 -0
- runs/Jun18_18-01-04_d696d3c41904/events.out.tfevents.1655575279.d696d3c41904.81.8 +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "microsoft/swin-tiny-patch4-window7-224",
|
3 |
+
"architectures": [
|
4 |
+
"SwinForImageClassification"
|
5 |
+
],
|
6 |
+
"attention_probs_dropout_prob": 0.0,
|
7 |
+
"depths": [
|
8 |
+
2,
|
9 |
+
2,
|
10 |
+
6,
|
11 |
+
2
|
12 |
+
],
|
13 |
+
"drop_path_rate": 0.1,
|
14 |
+
"embed_dim": 96,
|
15 |
+
"encoder_stride": 32,
|
16 |
+
"hidden_act": "gelu",
|
17 |
+
"hidden_dropout_prob": 0.0,
|
18 |
+
"hidden_size": 768,
|
19 |
+
"id2label": {
|
20 |
+
"0": "cad",
|
21 |
+
"1": "healthy"
|
22 |
+
},
|
23 |
+
"image_size": 224,
|
24 |
+
"initializer_range": 0.02,
|
25 |
+
"label2id": {
|
26 |
+
"cad": 0,
|
27 |
+
"healthy": 1
|
28 |
+
},
|
29 |
+
"layer_norm_eps": 1e-05,
|
30 |
+
"mlp_ratio": 4.0,
|
31 |
+
"model_type": "swin",
|
32 |
+
"num_channels": 3,
|
33 |
+
"num_heads": [
|
34 |
+
3,
|
35 |
+
6,
|
36 |
+
12,
|
37 |
+
24
|
38 |
+
],
|
39 |
+
"num_layers": 4,
|
40 |
+
"patch_size": 4,
|
41 |
+
"path_norm": true,
|
42 |
+
"problem_type": "single_label_classification",
|
43 |
+
"qkv_bias": true,
|
44 |
+
"torch_dtype": "float32",
|
45 |
+
"transformers_version": "4.20.0",
|
46 |
+
"use_absolute_embeddings": false,
|
47 |
+
"window_size": 7
|
48 |
+
}
|
preprocessor_config.json
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"do_normalize": true,
|
3 |
+
"do_resize": true,
|
4 |
+
"feature_extractor_type": "ViTFeatureExtractor",
|
5 |
+
"image_mean": [
|
6 |
+
0.485,
|
7 |
+
0.456,
|
8 |
+
0.406
|
9 |
+
],
|
10 |
+
"image_std": [
|
11 |
+
0.229,
|
12 |
+
0.224,
|
13 |
+
0.225
|
14 |
+
],
|
15 |
+
"resample": 3,
|
16 |
+
"size": 224
|
17 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:77ea3e945806488a7f5d4d36ca4906c4abb5135403e1f1130b13456212e5b00b
|
3 |
+
size 110392879
|
runs/Jun18_17-26-04_d696d3c41904/1655573202.6452746/events.out.tfevents.1655573202.d696d3c41904.81.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:bf561c38f869334e9cc5ce11fc54a9c9225ae507b152aa0a5d45aaac7efb0c0a
|
3 |
+
size 5402
|
runs/Jun18_17-26-04_d696d3c41904/events.out.tfevents.1655573202.d696d3c41904.81.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8805be7f79ab16b62373af5370acb8bcf9c829e10f269e8513b7b28d42a390fa
|
3 |
+
size 3894
|
runs/Jun18_17-31-23_d696d3c41904/1655573504.1174939/events.out.tfevents.1655573504.d696d3c41904.81.3
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:39faa52fb76df3ff65d775a4aa7f103dbce5297fc63cb04b05542eb3509f47cb
|
3 |
+
size 5402
|
runs/Jun18_17-31-23_d696d3c41904/events.out.tfevents.1655573504.d696d3c41904.81.2
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a0571eba3d67f079f1130073a296d0de4ab2f0dd97ce405b9e181bd2a99efa65
|
3 |
+
size 3894
|
runs/Jun18_17-34-05_d696d3c41904/1655573663.2624373/events.out.tfevents.1655573663.d696d3c41904.81.5
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1ff772db4501d24c6b5de20399ca39afce336bef51fc4963ee6e1c786f51bfc2
|
3 |
+
size 5402
|
runs/Jun18_17-34-05_d696d3c41904/events.out.tfevents.1655573663.d696d3c41904.81.4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d49a2312fc40890590f645f51a006d5f79fb76e421816e7c9fcdd7186b486884
|
3 |
+
size 4202
|
runs/Jun18_17-49-59_d696d3c41904/1655574618.3890936/events.out.tfevents.1655574618.d696d3c41904.81.7
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9af678808b574ff1f9c0ea4a8d3f2e12a27644fe1e6d302f29778aaf5d715236
|
3 |
+
size 5402
|
runs/Jun18_17-49-59_d696d3c41904/events.out.tfevents.1655574618.d696d3c41904.81.6
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:16fb81cff1fa6705026947bd8f934b02c346a474d191420bd25a639079af2f6d
|
3 |
+
size 4405
|
runs/Jun18_18-01-04_d696d3c41904/1655575279.6560137/events.out.tfevents.1655575279.d696d3c41904.81.9
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fbfcf7a47a660d130c4f141136bae5282d0b12bdbb16c31fac7a75b757239935
|
3 |
+
size 5406
|
runs/Jun18_18-01-04_d696d3c41904/events.out.tfevents.1655575279.d696d3c41904.81.8
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:df3d48c63af3e595215f435c234d9ec31b20b27cd0522940c2663224f1a71919
|
3 |
+
size 11141
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:93f93b3210821e5b7672f1056a8e1ebfc3ebd9957e641dada6d967a96b04378d
|
3 |
+
size 3375
|