jays009 commited on
Commit
cc00c36
·
verified ·
1 Parent(s): ef28f2b

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +25 -0
config.json CHANGED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_name": "Maize Anomaly Detection Model",
3
+ "tags": [
4
+ "pytorch",
5
+ "resnet",
6
+ "agriculture",
7
+ "anomaly-detection"
8
+ ],
9
+ "license": "apache-2.0",
10
+ "library_name": "pytorch",
11
+ "datasets": [
12
+ "your_huggingface_username/your_dataset_name"
13
+ ],
14
+ "architecture": "ResNet50",
15
+ "input_shape": [3, 224, 224],
16
+ "num_classes": 2,
17
+ "optimizer": "Adam",
18
+ "learning_rate": 0.001,
19
+ "epochs": 20,
20
+ "batch_size": 32,
21
+ "pretrained": false,
22
+ "finetuned": true,
23
+ "training_framework": "PyTorch",
24
+ "description": "This model is trained to detect anomalies in maize crops, such as pest infections, diseases, or nutrient deficiencies, using ResNet50 architecture."
25
+ }