Arya-Bastani23
commited on
Commit
·
9d373b7
1
Parent(s):
f52b929
Training in progress, epoch 0
Browse files- .gitignore +1 -0
- config.json +67 -0
- preprocessor_config.json +22 -0
- pytorch_model.bin +3 -0
- runs/Sep24_22-41-42_863fe16dbbc7/1695595326.772748/events.out.tfevents.1695595326.863fe16dbbc7.13922.1 +3 -0
- runs/Sep24_22-41-42_863fe16dbbc7/events.out.tfevents.1695595326.863fe16dbbc7.13922.0 +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,67 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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": "class_0",
|
21 |
+
"1": "class_1",
|
22 |
+
"2": "class_2",
|
23 |
+
"3": "class_3",
|
24 |
+
"4": "class_4"
|
25 |
+
},
|
26 |
+
"image_size": 224,
|
27 |
+
"initializer_range": 0.02,
|
28 |
+
"label2id": {
|
29 |
+
"class_0": 0,
|
30 |
+
"class_1": 1,
|
31 |
+
"class_2": 2,
|
32 |
+
"class_3": 3,
|
33 |
+
"class_4": 4
|
34 |
+
},
|
35 |
+
"layer_norm_eps": 1e-05,
|
36 |
+
"mlp_ratio": 4.0,
|
37 |
+
"model_type": "swin",
|
38 |
+
"num_channels": 3,
|
39 |
+
"num_heads": [
|
40 |
+
3,
|
41 |
+
6,
|
42 |
+
12,
|
43 |
+
24
|
44 |
+
],
|
45 |
+
"num_layers": 4,
|
46 |
+
"out_features": [
|
47 |
+
"stage4"
|
48 |
+
],
|
49 |
+
"out_indices": [
|
50 |
+
4
|
51 |
+
],
|
52 |
+
"patch_size": 4,
|
53 |
+
"path_norm": true,
|
54 |
+
"problem_type": "single_label_classification",
|
55 |
+
"qkv_bias": true,
|
56 |
+
"stage_names": [
|
57 |
+
"stem",
|
58 |
+
"stage1",
|
59 |
+
"stage2",
|
60 |
+
"stage3",
|
61 |
+
"stage4"
|
62 |
+
],
|
63 |
+
"torch_dtype": "float32",
|
64 |
+
"transformers_version": "4.28.0",
|
65 |
+
"use_absolute_embeddings": false,
|
66 |
+
"window_size": 7
|
67 |
+
}
|
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:d3b07722f8d35edfe16419912502bb3d2662a228111275fc775c91efd8514276
|
3 |
+
size 110404081
|
runs/Sep24_22-41-42_863fe16dbbc7/1695595326.772748/events.out.tfevents.1695595326.863fe16dbbc7.13922.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ba6cd1fef3f07a29227c036a7e73568d49f3a98b0b25117731ead8c6cddf9676
|
3 |
+
size 5964
|
runs/Sep24_22-41-42_863fe16dbbc7/events.out.tfevents.1695595326.863fe16dbbc7.13922.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ef360ae42e2e0cab441454e212612190316152985bc4aa0837eb7e0b250daf3e
|
3 |
+
size 5045
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cb1b9db9556a8fb0be5ba8ad16fc307066b29994ee7489ecf61c8030fe4e7c5b
|
3 |
+
size 3643
|