Factral commited on
Commit
feed254
·
verified ·
1 Parent(s): e4adb3f

Training in progress epoch 0

Browse files
Files changed (4) hide show
  1. .gitignore +2 -0
  2. config.json +70 -0
  3. model.safetensors +3 -0
  4. preprocessor_config.json +23 -0
.gitignore ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ step_*
2
+ epoch_*
config.json ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "microsoft/swin-large-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": 192,
15
+ "encoder_stride": 32,
16
+ "finetuning_task": "image-classification",
17
+ "hidden_act": "gelu",
18
+ "hidden_dropout_prob": 0.0,
19
+ "hidden_size": 1536,
20
+ "id2label": {
21
+ "0": "fermentado",
22
+ "1": "hongo",
23
+ "2": "insecto",
24
+ "3": "insufi_fermen",
25
+ "4": "pizarroso",
26
+ "5": "violeta"
27
+ },
28
+ "image_size": 224,
29
+ "initializer_range": 0.02,
30
+ "label2id": {
31
+ "fermentado": "0",
32
+ "hongo": "1",
33
+ "insecto": "2",
34
+ "insufi_fermen": "3",
35
+ "pizarroso": "4",
36
+ "violeta": "5"
37
+ },
38
+ "layer_norm_eps": 1e-05,
39
+ "mlp_ratio": 4.0,
40
+ "model_type": "swin",
41
+ "num_channels": 3,
42
+ "num_heads": [
43
+ 6,
44
+ 12,
45
+ 24,
46
+ 48
47
+ ],
48
+ "num_layers": 4,
49
+ "out_features": [
50
+ "stage4"
51
+ ],
52
+ "out_indices": [
53
+ 4
54
+ ],
55
+ "patch_size": 4,
56
+ "path_norm": true,
57
+ "problem_type": "single_label_classification",
58
+ "qkv_bias": true,
59
+ "stage_names": [
60
+ "stem",
61
+ "stage1",
62
+ "stage2",
63
+ "stage3",
64
+ "stage4"
65
+ ],
66
+ "torch_dtype": "float32",
67
+ "transformers_version": "4.47.1",
68
+ "use_absolute_embeddings": false,
69
+ "window_size": 7
70
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cb12783f2dce23cdb07c9dc8735aae5e39a9294f3fa6a89baae2a9f9ba22eee9
3
+ size 780536704
preprocessor_config.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_convert_rgb": null,
3
+ "do_normalize": true,
4
+ "do_rescale": true,
5
+ "do_resize": true,
6
+ "image_mean": [
7
+ 0.485,
8
+ 0.456,
9
+ 0.406
10
+ ],
11
+ "image_processor_type": "ViTImageProcessor",
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": 224,
21
+ "width": 224
22
+ }
23
+ }