HorcruxNo13
commited on
Commit
•
3a85ef9
1
Parent(s):
08c51c5
Training in progress, epoch 1
Browse files- config.json +46 -0
- preprocessor_config.json +22 -0
- pytorch_model.bin +3 -0
- training_args.bin +3 -0
config.json
ADDED
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "MBZUAI/swiftformer-xs",
|
3 |
+
"architectures": [
|
4 |
+
"SwiftFormerForImageClassification"
|
5 |
+
],
|
6 |
+
"batch_norm_eps": 1e-05,
|
7 |
+
"depths": [
|
8 |
+
3,
|
9 |
+
3,
|
10 |
+
6,
|
11 |
+
4
|
12 |
+
],
|
13 |
+
"down_pad": 1,
|
14 |
+
"down_patch_size": 3,
|
15 |
+
"down_stride": 2,
|
16 |
+
"downsamples": [
|
17 |
+
true,
|
18 |
+
true,
|
19 |
+
true,
|
20 |
+
true
|
21 |
+
],
|
22 |
+
"drop_path_rate": 0.0,
|
23 |
+
"embed_dims": [
|
24 |
+
48,
|
25 |
+
56,
|
26 |
+
112,
|
27 |
+
220
|
28 |
+
],
|
29 |
+
"hidden_act": "gelu",
|
30 |
+
"id2label": {
|
31 |
+
"0": "Normal",
|
32 |
+
"1": "Abnormal"
|
33 |
+
},
|
34 |
+
"label2id": {
|
35 |
+
"Abnormal": 1,
|
36 |
+
"Normal": 0
|
37 |
+
},
|
38 |
+
"layer_scale_init_value": 1e-05,
|
39 |
+
"mlp_ratio": 4,
|
40 |
+
"model_type": "swiftformer",
|
41 |
+
"num_channels": 3,
|
42 |
+
"problem_type": "single_label_classification",
|
43 |
+
"torch_dtype": "float32",
|
44 |
+
"transformers_version": "4.33.2",
|
45 |
+
"use_layer_scale": true
|
46 |
+
}
|
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": 2,
|
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:efda31e0f142b21e069f23f0476f467f6333923f39b6f9a10bc728e098e0ccc2
|
3 |
+
size 12267645
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1d08684c4f9250f5bba7cff5386c7f0c66af096a2967f80072d7cea080e166d6
|
3 |
+
size 4027
|