NimurAI commited on
Commit
fb1cf8c
·
verified ·
1 Parent(s): 1745d01

Upload config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. config.json +45 -0
config.json ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_info": {
3
+ "name": "plant-detector",
4
+ "type": "ConvolutionalAutoencoder",
5
+ "framework": "PyTorch Lightning",
6
+ "task": "anomaly_detection",
7
+ "input_shape": [
8
+ 3,
9
+ 224,
10
+ 224
11
+ ],
12
+ "latent_dim": 128
13
+ },
14
+ "training": {
15
+ "learning_rate": 0.0001,
16
+ "batch_size": 32,
17
+ "epochs": "N/A",
18
+ "latent_dim": 128,
19
+ "dataset_size": "N/A"
20
+ },
21
+ "metrics": {
22
+ "threshold": 0.5687,
23
+ "val_loss": "N/A",
24
+ "mean_reconstruction_error": "N/A",
25
+ "std_reconstruction_error": "N/A",
26
+ "anomaly_rate": "N/A"
27
+ },
28
+ "normalization": {
29
+ "mean": [
30
+ 0.4682,
31
+ 0.4865,
32
+ 0.305
33
+ ],
34
+ "std": [
35
+ 0.2064,
36
+ 0.1995,
37
+ 0.1961
38
+ ]
39
+ },
40
+ "usage": {
41
+ "threshold": 0.5687,
42
+ "input_preprocessing": "Resize to 224x224, normalize with mean/std",
43
+ "output_interpretation": "Lower reconstruction error = more plant-like"
44
+ }
45
+ }