karthikeya09 commited on
Commit
ab6812c
·
verified ·
1 Parent(s): fdd1d98

Upload config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. config.json +29 -0
config.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_name": "Smart Waste Classification",
3
+ "architecture": "MobileNetV2",
4
+ "num_classes": 6,
5
+ "classes": [
6
+ "glass",
7
+ "metal",
8
+ "non-recyclable",
9
+ "organic",
10
+ "paper",
11
+ "plastic"
12
+ ],
13
+ "image_size": 224,
14
+ "framework": "PyTorch",
15
+ "pretrained_on": "ImageNet",
16
+ "validation_accuracy": "97.46%",
17
+ "input_normalization": {
18
+ "mean": [
19
+ 0.485,
20
+ 0.456,
21
+ 0.406
22
+ ],
23
+ "std": [
24
+ 0.229,
25
+ 0.224,
26
+ 0.225
27
+ ]
28
+ }
29
+ }