Update README.md
Browse files
README.md
CHANGED
@@ -1,17 +1,32 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
-
|
8 |
-
|
9 |
-
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
feature_extractor = AutoFeatureExtractor.from_pretrained("Dreamy0/GermiNet-instance-segmentation")
|
|
|
1 |
+
---
|
2 |
+
language: en
|
3 |
+
license: mit
|
4 |
+
tags:
|
5 |
+
- instance-segmentation
|
6 |
+
- detectron2
|
7 |
+
- pytorch
|
8 |
+
datasets:
|
9 |
+
- custom-dataset
|
10 |
+
metrics:
|
11 |
+
- mean-average-precision
|
12 |
+
pipeline_tag: object-detection
|
13 |
+
---
|
14 |
+
|
15 |
+
|
16 |
+
# Instance Segmentation Model
|
17 |
+
|
18 |
+
## Description
|
19 |
+
This model performs instance segmentation using Mask R-CNN. It was trained on a custom dataset containing [X] images with [Y] classes.
|
20 |
+
|
21 |
+
## Training Data
|
22 |
+
- Dataset: [Germination Images]
|
23 |
+
- Number of Images: [22]
|
24 |
+
- Number of Classes: [2]
|
25 |
+
|
26 |
+
## Usage
|
27 |
+
Load the model using:
|
28 |
+
```python
|
29 |
+
from transformers import AutoModelForObjectDetection, AutoFeatureExtractor
|
30 |
+
|
31 |
+
model = AutoModelForObjectDetection.from_pretrained("Dreamy0/GermiNet-instance-segmentation")
|
32 |
feature_extractor = AutoFeatureExtractor.from_pretrained("Dreamy0/GermiNet-instance-segmentation")
|