debajyotidasgupta
commited on
Commit
•
038d28e
1
Parent(s):
619038f
Training in progress, epoch 0
Browse files- config.json +53 -0
- model.safetensors +3 -0
- preprocessor_config.json +22 -0
- training_args.bin +3 -0
config.json
ADDED
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
"image_size": 224,
|
20 |
+
"initializer_range": 0.02,
|
21 |
+
"layer_norm_eps": 1e-05,
|
22 |
+
"mlp_ratio": 4.0,
|
23 |
+
"model_type": "swin",
|
24 |
+
"num_channels": 3,
|
25 |
+
"num_heads": [
|
26 |
+
4,
|
27 |
+
8,
|
28 |
+
16,
|
29 |
+
32
|
30 |
+
],
|
31 |
+
"num_layers": 4,
|
32 |
+
"out_features": [
|
33 |
+
"stage4"
|
34 |
+
],
|
35 |
+
"out_indices": [
|
36 |
+
4
|
37 |
+
],
|
38 |
+
"patch_size": 4,
|
39 |
+
"path_norm": true,
|
40 |
+
"problem_type": "single_label_classification",
|
41 |
+
"qkv_bias": true,
|
42 |
+
"stage_names": [
|
43 |
+
"stem",
|
44 |
+
"stage1",
|
45 |
+
"stage2",
|
46 |
+
"stage3",
|
47 |
+
"stage4"
|
48 |
+
],
|
49 |
+
"torch_dtype": "float32",
|
50 |
+
"transformers_version": "4.37.2",
|
51 |
+
"use_absolute_embeddings": false,
|
52 |
+
"window_size": 7
|
53 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e86e86921fcb1e9ec96061d81202cd282e726a029f8487c48af05a9945bb626c
|
3 |
+
size 347498816
|
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 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d2a3bb0970d9506e75f1cf05fdb425531980a08746b444ea8674110ad4d4f0f7
|
3 |
+
size 4271
|