File size: 607 Bytes
f39a6b8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# Instance Segmentation Model
## Description
This model performs instance segmentation using Mask R-CNN. It was trained on a custom dataset containing [X] images with [Y] classes.
## Training Data
- Dataset: [Germination Images]
- Number of Images: [22]
- Number of Classes: [2]
## Usage
Load the model using:
```python
from transformers import AutoModelForObjectDetection, AutoFeatureExtractor
model = AutoModelForObjectDetection.from_pretrained("Dreamy0/GermiNet-instance-segmentation")
feature_extractor = AutoFeatureExtractor.from_pretrained("Dreamy0/GermiNet-instance-segmentation") |