rubysmac commited on
Commit
dab3696
·
verified ·
1 Parent(s): cb9a71a

Initial upload of the fine-tuned model

Browse files
Files changed (3) hide show
  1. config.json +44 -0
  2. model.safetensors +3 -0
  3. preprocessor_config.json +24 -0
config.json ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "prithivMLmods/Augmented-Waste-Classifier-SigLIP2",
3
+ "architectures": [
4
+ "SiglipForImageClassification"
5
+ ],
6
+ "id2label": {
7
+ "0": "Battery",
8
+ "1": "Biological",
9
+ "2": "Cardboard",
10
+ "3": "Clothes",
11
+ "4": "Glass",
12
+ "5": "Metal",
13
+ "6": "Paper",
14
+ "7": "Plastic",
15
+ "8": "Shoes",
16
+ "9": "Trash"
17
+ },
18
+ "initializer_factor": 1.0,
19
+ "label2id": {
20
+ "Battery": 0,
21
+ "Biological": 1,
22
+ "Cardboard": 2,
23
+ "Clothes": 3,
24
+ "Glass": 4,
25
+ "Metal": 5,
26
+ "Paper": 6,
27
+ "Plastic": 7,
28
+ "Shoes": 8,
29
+ "Trash": 9
30
+ },
31
+ "model_type": "siglip",
32
+ "problem_type": "single_label_classification",
33
+ "text_config": {
34
+ "model_type": "siglip_text_model",
35
+ "torch_dtype": "float32",
36
+ "vocab_size": 256000
37
+ },
38
+ "torch_dtype": "float32",
39
+ "transformers_version": "4.48.3",
40
+ "vision_config": {
41
+ "model_type": "siglip_vision_model",
42
+ "torch_dtype": "float32"
43
+ }
44
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:68ea5dd1df29b7163ae2e0b4bd4288915ea728935596f96843020bccaa610345
3
+ size 371592608
preprocessor_config.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "SiglipImageProcessor",
12
+ "image_std": [
13
+ 0.229,
14
+ 0.224,
15
+ 0.225
16
+ ],
17
+ "processor_class": "SiglipProcessor",
18
+ "resample": 2,
19
+ "rescale_factor": 0.00392156862745098,
20
+ "size": {
21
+ "height": 224,
22
+ "width": 224
23
+ }
24
+ }