jays009 commited on
Commit
8f59583
·
verified ·
1 Parent(s): 5a4bfdf

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +14 -15
config.json CHANGED
@@ -1,25 +1,24 @@
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
  }
 
1
  {
2
+ "model_name": "Wheat Anomaly Detection Model (TensorFlow)",
3
  "tags": [
4
+ "tensorflow",
5
  "resnet",
6
  "agriculture",
7
  "anomaly-detection"
8
  ],
9
  "license": "apache-2.0",
10
+ "library_name": "tensorflow",
11
  "datasets": [
12
+ "wheat-dataset" // Replace with actual dataset name if available
13
  ],
14
+ "model_type": "resnet50",
15
+ "preprocessing": {
16
+ "resize": 256,
17
+ "center_crop": 224,
18
+ "normalize": [0.485, 0.456, 0.406],
19
+ "normalize_std": [0.229, 0.224, 0.225]
20
+ },
21
+ "framework": "tensorflow",
22
+ "task": "image-classification",
23
+ "pipeline_tag": "image-classification"
 
24
  }