Upload folder using huggingface_hub
Browse files
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")
|