model_name: "Wheat Anomaly Detection Model" | |
tags: | |
- tensorflow | |
- saved_model | |
- agriculture | |
- anomaly-detection | |
license: apache-2.0 | |
library_name: tensorflow | |
datasets: | |
- wheat_dataset_name | |
# My Wheat Anomaly Detection Model | |
This model is stored in TensorFlow SavedModel format and detects anomalies in wheat crops. | |
## How to Load the Model | |
```python | |
import tensorflow as tf | |
model = tf.saved_model.load('saved_model') | |
``` | |