Update config.json
Browse files- config.json +14 -15
config.json
CHANGED
@@ -1,25 +1,24 @@
|
|
1 |
{
|
2 |
-
"model_name": "
|
3 |
"tags": [
|
4 |
-
"
|
5 |
"resnet",
|
6 |
"agriculture",
|
7 |
"anomaly-detection"
|
8 |
],
|
9 |
"license": "apache-2.0",
|
10 |
-
"library_name": "
|
11 |
"datasets": [
|
12 |
-
"
|
13 |
],
|
14 |
-
"
|
15 |
-
"
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
"
|
22 |
-
"
|
23 |
-
"
|
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 |
}
|