Commit ·
f321c19
1
Parent(s): 3c1e1d6
Training in progress, epoch 0
Browse files- .gitignore +1 -0
- config.json +58 -0
- preprocessor_config.json +23 -0
- pytorch_model.bin +3 -0
- runs/Feb16_07-47-12_d25ad726feab/1676533642.9812229/events.out.tfevents.1676533642.d25ad726feab.115.1 +3 -0
- runs/Feb16_07-47-12_d25ad726feab/events.out.tfevents.1676533642.d25ad726feab.115.0 +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
checkpoint-*/
|
config.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "microsoft/swinv2-tiny-patch4-window8-256",
|
| 3 |
+
"architectures": [
|
| 4 |
+
"Swinv2ForImageClassification"
|
| 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": "FNH",
|
| 21 |
+
"1": "HCC",
|
| 22 |
+
"2": "HHE",
|
| 23 |
+
"3": "healthy"
|
| 24 |
+
},
|
| 25 |
+
"image_size": 256,
|
| 26 |
+
"initializer_range": 0.02,
|
| 27 |
+
"label2id": {
|
| 28 |
+
"FNH": 0,
|
| 29 |
+
"HCC": 1,
|
| 30 |
+
"HHE": 2,
|
| 31 |
+
"healthy": 3
|
| 32 |
+
},
|
| 33 |
+
"layer_norm_eps": 1e-05,
|
| 34 |
+
"mlp_ratio": 4.0,
|
| 35 |
+
"model_type": "swinv2",
|
| 36 |
+
"num_channels": 3,
|
| 37 |
+
"num_heads": [
|
| 38 |
+
3,
|
| 39 |
+
6,
|
| 40 |
+
12,
|
| 41 |
+
24
|
| 42 |
+
],
|
| 43 |
+
"num_layers": 4,
|
| 44 |
+
"patch_size": 4,
|
| 45 |
+
"path_norm": true,
|
| 46 |
+
"pretrained_window_sizes": [
|
| 47 |
+
0,
|
| 48 |
+
0,
|
| 49 |
+
0,
|
| 50 |
+
0
|
| 51 |
+
],
|
| 52 |
+
"problem_type": "single_label_classification",
|
| 53 |
+
"qkv_bias": true,
|
| 54 |
+
"torch_dtype": "float32",
|
| 55 |
+
"transformers_version": "4.26.1",
|
| 56 |
+
"use_absolute_embeddings": false,
|
| 57 |
+
"window_size": 8
|
| 58 |
+
}
|
preprocessor_config.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"do_normalize": true,
|
| 3 |
+
"do_rescale": true,
|
| 4 |
+
"do_resize": true,
|
| 5 |
+
"feature_extractor_type": "ViTFeatureExtractor",
|
| 6 |
+
"image_mean": [
|
| 7 |
+
0.485,
|
| 8 |
+
0.456,
|
| 9 |
+
0.406
|
| 10 |
+
],
|
| 11 |
+
"image_processor_type": "ViTFeatureExtractor",
|
| 12 |
+
"image_std": [
|
| 13 |
+
0.229,
|
| 14 |
+
0.224,
|
| 15 |
+
0.225
|
| 16 |
+
],
|
| 17 |
+
"resample": 3,
|
| 18 |
+
"rescale_factor": 0.00392156862745098,
|
| 19 |
+
"size": {
|
| 20 |
+
"height": 256,
|
| 21 |
+
"width": 256
|
| 22 |
+
}
|
| 23 |
+
}
|
pytorch_model.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:795e757e5a9134140000b7975d3f3f93b3be18b3b72df0127d60b1583392a9bc
|
| 3 |
+
size 110411297
|
runs/Feb16_07-47-12_d25ad726feab/1676533642.9812229/events.out.tfevents.1676533642.d25ad726feab.115.1
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b338f793b5cf83cfe72dcdebf9ce807a871e1fb89b810c2dd4c396436ea02bac
|
| 3 |
+
size 5785
|
runs/Feb16_07-47-12_d25ad726feab/events.out.tfevents.1676533642.d25ad726feab.115.0
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:51ef65739de31003ce7170b83d0920cbde47da30f241666eab91bf7155f2c97e
|
| 3 |
+
size 13034
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1f61e31679a310d5a7b1a038d97329c677711f9621cc0de8bdc5ff44f059f655
|
| 3 |
+
size 3579
|