Factral commited on
Commit
146814b
·
verified ·
1 Parent(s): cc0671e

Upload folder using huggingface_hub

Browse files
Files changed (5) hide show
  1. .gitignore +2 -0
  2. all_results.json +1 -0
  3. config.json +53 -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.9330453563714903, "eval_precision": 0.8586224780387216, "eval_recall": 0.8485830228970103, "eval_f1": 0.8478601978601977, "eval_specificity": 0.9574314920166884, "eval_train_loss": 0.12030032585407126, "eval_epoch": 99, "eval_step": 11600}
config.json ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "timm/mobilenetv3_large_100.ra_in1k",
3
+ "architecture": "mobilenetv3_large_100",
4
+ "architectures": [
5
+ "TimmWrapperForImageClassification"
6
+ ],
7
+ "do_pooling": true,
8
+ "finetuning_task": "image-classification",
9
+ "initializer_range": 0.02,
10
+ "label_names": [
11
+ "fermentado",
12
+ "hongo",
13
+ "insecto",
14
+ "insufi_fermen",
15
+ "pizarroso",
16
+ "violeta"
17
+ ],
18
+ "model_type": "timm_wrapper",
19
+ "num_classes": 6,
20
+ "num_features": 1280,
21
+ "pretrained_cfg": {
22
+ "classifier": "classifier",
23
+ "crop_mode": "center",
24
+ "crop_pct": 0.875,
25
+ "custom_load": false,
26
+ "first_conv": "conv_stem",
27
+ "fixed_input_size": false,
28
+ "input_size": [
29
+ 3,
30
+ 224,
31
+ 224
32
+ ],
33
+ "interpolation": "bicubic",
34
+ "mean": [
35
+ 0.485,
36
+ 0.456,
37
+ 0.406
38
+ ],
39
+ "pool_size": [
40
+ 7,
41
+ 7
42
+ ],
43
+ "std": [
44
+ 0.229,
45
+ 0.224,
46
+ 0.225
47
+ ],
48
+ "tag": "ra_in1k"
49
+ },
50
+ "problem_type": "single_label_classification",
51
+ "torch_dtype": "float32",
52
+ "transformers_version": "4.48.0"
53
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:987ab2bb2ba81fdc8beadcdf875df3f8bbe00060123cf932bf673bb35f3401d8
3
+ size 16964776
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
+ }