ngaggion commited on
Commit
2977ee7
·
verified ·
1 Parent(s): 4c0732a

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +22 -0
README.md ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ library_name: nnunet
4
+ tags:
5
+ - image-segmentation
6
+ - medical-imaging
7
+ - biology
8
+ - chronoroot
9
+ - plant-science
10
+ datasets:
11
+ - ngaggion/ChronoRoot2
12
+ ---
13
+
14
+ # ChronoRoot 2.0: Tomato Segmentation Model
15
+
16
+ This is a pre-trained nnU-Net v2 model for root segmentation in Tomato images.
17
+
18
+ ### How to use
19
+ ```python
20
+ from nnunet_wrapper import nnUNetv2
21
+ model = nnUNetv2.from_pretrained("ngaggion/ChronoRoot2-Tomato")
22
+ model.predict_single_image("root_photo.png", "mask.png")