File size: 438 Bytes
be02981
 
 
 
 
 
 
 
 
 
 
 
5c31edf
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
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')
```