Factral commited on
Commit
fe70a96
1 Parent(s): e4adb3f

Training in progress epoch 0

Browse files
Files changed (4) hide show
  1. .gitignore +2 -0
  2. config.json +61 -0
  3. model.safetensors +3 -0
  4. preprocessor_config.json +22 -0
.gitignore ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ step_*
2
+ epoch_*
config.json ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "facebook/convnext-xlarge-224-22k-1k",
3
+ "architectures": [
4
+ "ConvNextForImageClassification"
5
+ ],
6
+ "depths": [
7
+ 3,
8
+ 3,
9
+ 27,
10
+ 3
11
+ ],
12
+ "drop_path_rate": 0.0,
13
+ "finetuning_task": "image-classification",
14
+ "hidden_act": "gelu",
15
+ "hidden_sizes": [
16
+ 256,
17
+ 512,
18
+ 1024,
19
+ 2048
20
+ ],
21
+ "id2label": {
22
+ "0": "fermentado",
23
+ "1": "hongo",
24
+ "2": "insecto",
25
+ "3": "insufi_fermen",
26
+ "4": "pizarroso",
27
+ "5": "violeta"
28
+ },
29
+ "image_size": 224,
30
+ "initializer_range": 0.02,
31
+ "label2id": {
32
+ "fermentado": "0",
33
+ "hongo": "1",
34
+ "insecto": "2",
35
+ "insufi_fermen": "3",
36
+ "pizarroso": "4",
37
+ "violeta": "5"
38
+ },
39
+ "layer_norm_eps": 1e-12,
40
+ "layer_scale_init_value": 1e-06,
41
+ "model_type": "convnext",
42
+ "num_channels": 3,
43
+ "num_stages": 4,
44
+ "out_features": [
45
+ "stage4"
46
+ ],
47
+ "out_indices": [
48
+ 4
49
+ ],
50
+ "patch_size": 4,
51
+ "problem_type": "single_label_classification",
52
+ "stage_names": [
53
+ "stem",
54
+ "stage1",
55
+ "stage2",
56
+ "stage3",
57
+ "stage4"
58
+ ],
59
+ "torch_dtype": "float32",
60
+ "transformers_version": "4.47.1"
61
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a14a1f967d488b765b05dc11464305c9039b6af7ebbc42416b3e9cbc75d16527
3
+ size 1392682728
preprocessor_config.json ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "crop_pct": 0.875,
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": "ConvNextImageProcessor",
12
+ "image_std": [
13
+ 0.229,
14
+ 0.224,
15
+ 0.225
16
+ ],
17
+ "resample": 3,
18
+ "rescale_factor": 0.00392156862745098,
19
+ "size": {
20
+ "shortest_edge": 224
21
+ }
22
+ }