Dreamy0 commited on
Commit
169acbb
·
verified ·
1 Parent(s): f39a6b8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +31 -16
README.md CHANGED
@@ -1,17 +1,32 @@
1
- # Instance Segmentation Model
2
-
3
- ## Description
4
- This model performs instance segmentation using Mask R-CNN. It was trained on a custom dataset containing [X] images with [Y] classes.
5
-
6
- ## Training Data
7
- - Dataset: [Germination Images]
8
- - Number of Images: [22]
9
- - Number of Classes: [2]
10
-
11
- ## Usage
12
- Load the model using:
13
- ```python
14
- from transformers import AutoModelForObjectDetection, AutoFeatureExtractor
15
-
16
- model = AutoModelForObjectDetection.from_pretrained("Dreamy0/GermiNet-instance-segmentation")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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")