CristianR8 commited on
Commit
b6f9b95
·
verified ·
1 Parent(s): 7417e35

Training in progress epoch 0

Browse files
Files changed (5) hide show
  1. .gitignore +2 -0
  2. all_results.json +1 -0
  3. config.json +51 -0
  4. model.safetensors +3 -0
  5. preprocessor_config.json +22 -0
.gitignore ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ step_*
2
+ epoch_*
all_results.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"eval_accuracy": 0.9265658747300216, "eval_precision": 0.9126530005941772, "eval_recall": 0.8086698484544739, "eval_f1": 0.8335475488130356, "eval_specificity": 0.939322995844735, "eval_train_loss": 0.06349007425637081, "eval_epoch": 99, "eval_step": 11600}
config.json ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "timm/vit_base_patch16_224.augreg_in21k_ft_in1k",
3
+ "architecture": "vit_base_patch16_224",
4
+ "architectures": [
5
+ "TimmWrapperForImageClassification"
6
+ ],
7
+ "do_pooling": true,
8
+ "finetuning_task": "image-classification",
9
+ "global_pool": "token",
10
+ "initializer_range": 0.02,
11
+ "label_names": [
12
+ "fermentado",
13
+ "hongo",
14
+ "insecto",
15
+ "insufi_fermen",
16
+ "pizarroso",
17
+ "violeta"
18
+ ],
19
+ "model_type": "timm_wrapper",
20
+ "num_classes": 6,
21
+ "num_features": 768,
22
+ "pretrained_cfg": {
23
+ "classifier": "head",
24
+ "crop_mode": "center",
25
+ "crop_pct": 0.9,
26
+ "custom_load": true,
27
+ "first_conv": "patch_embed.proj",
28
+ "fixed_input_size": true,
29
+ "input_size": [
30
+ 3,
31
+ 224,
32
+ 224
33
+ ],
34
+ "interpolation": "bicubic",
35
+ "mean": [
36
+ 0.5,
37
+ 0.5,
38
+ 0.5
39
+ ],
40
+ "pool_size": null,
41
+ "std": [
42
+ 0.5,
43
+ 0.5,
44
+ 0.5
45
+ ],
46
+ "tag": "augreg_in21k_ft_in1k"
47
+ },
48
+ "problem_type": "single_label_classification",
49
+ "torch_dtype": "float32",
50
+ "transformers_version": "4.48.0"
51
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2203299447ee45f9bd1b723ab2c4e43f3be6dceb9e683d6cd7ae2bf748fbe403
3
+ size 343227200
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.5,
7
+ 0.5,
8
+ 0.5
9
+ ],
10
+ "image_std": [
11
+ 0.5,
12
+ 0.5,
13
+ 0.5
14
+ ],
15
+ "resample": 3,
16
+ "rescale_factor": 0.00392156862745098,
17
+ "image_processor_type": "timm_wrapper",
18
+ "size": {
19
+ "height": 224,
20
+ "width": 224
21
+ }
22
+ }