jays009 commited on
Commit
f6305e7
·
verified ·
1 Parent(s): 63fe875

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -2
README.md CHANGED
@@ -7,7 +7,9 @@ tags:
7
  - anomaly-detection
8
  license: apache-2.0
9
  library_name: pytorch
10
-
 
 
11
  # Wheat Anomaly Detection Model
12
 
13
  This model is a PyTorch-based ResNet model trained to detect anomalies in wheat crops, such as diseases, pests, and nutrient deficiencies.
@@ -37,4 +39,3 @@ with torch.no_grad():
37
  outputs = model(inputs)
38
  predicted_class = torch.argmax(outputs.logits, dim=1)
39
  print(f"Predicted Class: {predicted_class.item()}")
40
-
 
7
  - anomaly-detection
8
  license: apache-2.0
9
  library_name: pytorch
10
+ datasets:
11
+ - your_huggingface_username/your_dataset_name
12
+ ---
13
  # Wheat Anomaly Detection Model
14
 
15
  This model is a PyTorch-based ResNet model trained to detect anomalies in wheat crops, such as diseases, pests, and nutrient deficiencies.
 
39
  outputs = model(inputs)
40
  predicted_class = torch.argmax(outputs.logits, dim=1)
41
  print(f"Predicted Class: {predicted_class.item()}")