| --- |
| license: cc-by-nc-4.0 |
| base_model: |
| - Ultralytics/YOLOv8 |
| pipeline_tag: image-segmentation |
| datasets: |
| - industoai/Egg-Instance-Segmentation |
| tags: |
| - object-segmentation |
| - YOLO |
| - Egg-Instance-Segmentation |
| library_name: pytorch |
| --- |
| |
| # Description |
| This model is a YOLO-based model which is trained on [Egg Instance Segmentation](https://huggingface.co/datasets/industoai/Egg-Instance-Segmentation). |
|
|
| ## Code |
| The complete code can be found [here](https://github.com/industoai/Deep-Egg-Segmentation-and-Sizing). |
|
|
| ## How to use |
| One can use the model within his/her code with the following commands: |
| ```shell |
| from huggingface_hub import hf_hub_download |
| from ultralytics import YOLO |
| |
| model_path = hf_hub_download(repo_id="industoai/Egg-Instance-Segmentation", filename="model/egg_segmentor.pt") |
| model = YOLO(model_path) |
| result = model("path/to/image") |
| ``` |
|
|
| ## License |
| This model is licensed under the Attribution–NonCommercial 4.0 International License (CC BY-NC 4.0). |
|
|