100+ datasets found
  1. R

    Yolo_training Dataset

    • universe.roboflow.com
    zip
    Updated May 20, 2024
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Bilel (2024). Yolo_training Dataset [Dataset]. https://universe.roboflow.com/bilel-0p6mi/yolo_training-gez6x/model/2
    Explore at:
    zipAvailable download formats
    Dataset updated
    May 20, 2024
    Dataset authored and provided by
    Bilel
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Variables measured
    Carre SV Oeil Bounding Boxes
    Description

    YOLO_training

    ## Overview
    
    YOLO_training is a dataset for object detection tasks - it contains Carre SV Oeil annotations for 203 images.
    
    ## Getting Started
    
    You can download this dataset for use within your own projects, or fork it into a workspace on Roboflow to create your own model.
    
      ## License
    
      This dataset is available under the [CC BY 4.0 license](https://creativecommons.org/licenses/CC BY 4.0).
    
  2. R

    Master 1 Yolo Training Dataset

    • universe.roboflow.com
    zip
    Updated Apr 16, 2024
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Master 1 Project (2024). Master 1 Yolo Training Dataset [Dataset]. https://universe.roboflow.com/master-1-project/master-1-yolo-training
    Explore at:
    zipAvailable download formats
    Dataset updated
    Apr 16, 2024
    Dataset authored and provided by
    Master 1 Project
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Variables measured
    Knives Bounding Boxes
    Description

    Master 1 Yolo Training

    ## Overview
    
    Master 1 Yolo Training is a dataset for object detection tasks - it contains Knives annotations for 610 images.
    
    ## Getting Started
    
    You can download this dataset for use within your own projects, or fork it into a workspace on Roboflow to create your own model.
    
      ## License
    
      This dataset is available under the [CC BY 4.0 license](https://creativecommons.org/licenses/CC BY 4.0).
    
  3. R

    Food Detection For Yolo Training Dataset

    • universe.roboflow.com
    zip
    Updated Dec 12, 2024
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    ahmad nabil (2024). Food Detection For Yolo Training Dataset [Dataset]. https://universe.roboflow.com/ahmad-nabil/food-detection-for-yolo-training
    Explore at:
    zipAvailable download formats
    Dataset updated
    Dec 12, 2024
    Dataset authored and provided by
    ahmad nabil
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Variables measured
    FOOD Bounding Boxes
    Description

    Food Detection For YOLO Training

    ## Overview
    
    Food Detection For YOLO Training is a dataset for object detection tasks - it contains FOOD annotations for 1,375 images.
    
    ## Getting Started
    
    You can download this dataset for use within your own projects, or fork it into a workspace on Roboflow to create your own model.
    
      ## License
    
      This dataset is available under the [CC BY 4.0 license](https://creativecommons.org/licenses/CC BY 4.0).
    
  4. R

    Custom Yolov7 On Kaggle On Custom Dataset

    • universe.roboflow.com
    zip
    Updated Jan 29, 2023
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Owais Ahmad (2023). Custom Yolov7 On Kaggle On Custom Dataset [Dataset]. https://universe.roboflow.com/owais-ahmad/custom-yolov7-on-kaggle-on-custom-dataset-rakiq/dataset/2
    Explore at:
    zipAvailable download formats
    Dataset updated
    Jan 29, 2023
    Dataset authored and provided by
    Owais Ahmad
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Variables measured
    Person Car Bounding Boxes
    Description

    Custom Training with YOLOv7 🔥

    Some Important links

    Contact Information

    Objective

    To Showcase custom Object Detection on the Given Dataset to train and Infer the Model using newly launched YoloV7.

    Data Acquisition

    The goal of this task is to train a model that can localize and classify each instance of Person and Car as accurately as possible.

    from IPython.display import Markdown, display
    
    display(Markdown("../input/Car-Person-v2-Roboflow/README.roboflow.txt"))
    

    Custom Training with YOLOv7 🔥

    In this Notebook, I have processed the images with RoboFlow because in COCO formatted dataset was having different dimensions of image and Also data set was not splitted into different Format. To train a custom YOLOv7 model we need to recognize the objects in the dataset. To do so I have taken the following steps:

    • Export the dataset to YOLOv7
    • Train YOLOv7 to recognize the objects in our dataset
    • Evaluate our YOLOv7 model's performance
    • Run test inference to view performance of YOLOv7 model at work

    📦 YOLOv7

    https://raw.githubusercontent.com/Owaiskhan9654/Yolo-V7-Custom-Dataset-Train-on-Kaggle/main/car-person-2.PNG" width=800>

    Image Credit - jinfagang

    Step 1: Install Requirements

    !git clone https://github.com/WongKinYiu/yolov7 # Downloading YOLOv7 repository and installing requirements
    %cd yolov7
    !pip install -qr requirements.txt
    !pip install -q roboflow
    

    Downloading YOLOV7 starting checkpoint

    !wget "https://github.com/WongKinYiu/yolov7/releases/download/v0.1/yolov7.pt"
    
    import os
    import glob
    import wandb
    import torch
    from roboflow import Roboflow
    from kaggle_secrets import UserSecretsClient
    from IPython.display import Image, clear_output, display # to display images
    
    
    
    print(f"Setup complete. Using torch {torch._version_} ({torch.cuda.get_device_properties(0).name if torch.cuda.is_available() else 'CPU'})")
    

    https://camo.githubusercontent.com/dd842f7b0be57140e68b2ab9cb007992acd131c48284eaf6b1aca758bfea358b/68747470733a2f2f692e696d6775722e636f6d2f52557469567a482e706e67">

    I will be integrating W&B for visualizations and logging artifacts and comparisons of different models!

    YOLOv7-Car-Person-Custom

    try:
      user_secrets = UserSecretsClient()
      wandb_api_key = user_secrets.get_secret("wandb_api")
      wandb.login(key=wandb_api_key)
      anonymous = None
    except:
      wandb.login(anonymous='must')
      print('To use your W&B account,
    Go to Add-ons -> Secrets and provide your W&B access token. Use the Label name as WANDB. 
    Get your W&B access token from here: https://wandb.ai/authorize')
      
      
      
    wandb.init(project="YOLOvR",name=f"7. YOLOv7-Car-Person-Custom-Run-7")
    

    Step 2: Assemble Our Dataset

    https://uploads-ssl.webflow.com/5f6bc60e665f54545a1e52a5/615627e5824c9c6195abfda9_computer-vision-cycle.png" alt="">

    In order to train our custom model, we need to assemble a dataset of representative images with bounding box annotations around the objects that we want to detect. And we need our dataset to be in YOLOv7 format.

    In Roboflow, We can choose between two paths:

    Version v2 Aug 12, 2022 Looks like this.

    https://raw.githubusercontent.com/Owaiskhan9654/Yolo-V7-Custom-Dataset-Train-on-Kaggle/main/Roboflow.PNG" alt="">

    user_secrets = UserSecretsClient()
    roboflow_api_key = user_secrets.get_secret("roboflow_api")
    
    rf = Roboflow(api_key=roboflow_api_key)
    project = rf.workspace("owais-ahmad").project("custom-yolov7-on-kaggle-on-custom-dataset-rakiq")
    dataset = project.version(2).download("yolov7")
    

    Step 3: Training Custom pretrained YOLOv7 model

    Here, I am able to pass a number of arguments: - img: define input image size - batch: determine

  5. R

    Train For Yolo Dataset

    • universe.roboflow.com
    zip
    Updated Mar 26, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    yolo (2025). Train For Yolo Dataset [Dataset]. https://universe.roboflow.com/yolo-pyqox/train-for-yolo
    Explore at:
    zipAvailable download formats
    Dataset updated
    Mar 26, 2025
    Dataset authored and provided by
    yolo
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Variables measured
    Hand Pen Phone Ipad Book LfzJ Bounding Boxes
    Description

    Train For Yolo

    ## Overview
    
    Train For Yolo is a dataset for object detection tasks - it contains Hand Pen Phone Ipad Book LfzJ annotations for 2,078 images.
    
    ## Getting Started
    
    You can download this dataset for use within your own projects, or fork it into a workspace on Roboflow to create your own model.
    
      ## License
    
      This dataset is available under the [CC BY 4.0 license](https://creativecommons.org/licenses/CC BY 4.0).
    
  6. R

    Yolo Train 1 Dataset

    • universe.roboflow.com
    zip
    Updated Mar 14, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    MarK Train (2025). Yolo Train 1 Dataset [Dataset]. https://universe.roboflow.com/mark-train/yolo-train-1
    Explore at:
    zipAvailable download formats
    Dataset updated
    Mar 14, 2025
    Dataset authored and provided by
    MarK Train
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Area covered
    1 Train (Broadway-7 Av Local)
    Variables measured
    Objects Bounding Boxes
    Description

    YOLO Train 1

    ## Overview
    
    YOLO Train 1 is a dataset for object detection tasks - it contains Objects annotations for 330 images.
    
    ## Getting Started
    
    You can download this dataset for use within your own projects, or fork it into a workspace on Roboflow to create your own model.
    
      ## License
    
      This dataset is available under the [CC BY 4.0 license](https://creativecommons.org/licenses/CC BY 4.0).
    
  7. R

    Yolo Train Data Set Dataset

    • universe.roboflow.com
    zip
    Updated Mar 31, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    ekrem (2025). Yolo Train Data Set Dataset [Dataset]. https://universe.roboflow.com/ekrem-z3bqx/yolo-train-data-set/model/6
    Explore at:
    zipAvailable download formats
    Dataset updated
    Mar 31, 2025
    Dataset authored and provided by
    ekrem
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Variables measured
    Objects Bounding Boxes
    Description

    YOLO TRAIN DATA SET

    ## Overview
    
    YOLO TRAIN DATA SET is a dataset for object detection tasks - it contains Objects annotations for 2,106 images.
    
    ## Getting Started
    
    You can download this dataset for use within your own projects, or fork it into a workspace on Roboflow to create your own model.
    
      ## License
    
      This dataset is available under the [CC BY 4.0 license](https://creativecommons.org/licenses/CC BY 4.0).
    
  8. R

    Yolov5 Custom Training Dataset

    • universe.roboflow.com
    zip
    Updated Oct 21, 2021
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Hannah Hillhouse (2021). Yolov5 Custom Training Dataset [Dataset]. https://universe.roboflow.com/hannah-hillhouse/yolov5-custom-training
    Explore at:
    zipAvailable download formats
    Dataset updated
    Oct 21, 2021
    Dataset authored and provided by
    Hannah Hillhouse
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Variables measured
    H Bounding Boxes
    Description

    Yolov5 Custom Training

    ## Overview
    
    Yolov5 Custom Training is a dataset for object detection tasks - it contains H annotations for 356 images.
    
    ## Getting Started
    
    You can download this dataset for use within your own projects, or fork it into a workspace on Roboflow to create your own model.
    
      ## License
    
      This dataset is available under the [CC BY 4.0 license](https://creativecommons.org/licenses/CC BY 4.0).
    
  9. R

    Yolov8 Hand Training Dataset

    • universe.roboflow.com
    zip
    Updated Sep 6, 2024
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    MAE 148 TEAM 4 (2024). Yolov8 Hand Training Dataset [Dataset]. https://universe.roboflow.com/mae-148-team-4/yolov8-hand-training
    Explore at:
    zipAvailable download formats
    Dataset updated
    Sep 6, 2024
    Dataset authored and provided by
    MAE 148 TEAM 4
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Variables measured
    3 Bounding Boxes
    Description

    Yolov8 Hand Training

    ## Overview
    
    Yolov8 Hand Training is a dataset for object detection tasks - it contains 3 annotations for 1,705 images.
    
    ## Getting Started
    
    You can download this dataset for use within your own projects, or fork it into a workspace on Roboflow to create your own model.
    
      ## License
    
      This dataset is available under the [CC BY 4.0 license](https://creativecommons.org/licenses/CC BY 4.0).
    
  10. R

    Yolo Find Text Dataset

    • universe.roboflow.com
    zip
    Updated Jul 17, 2022
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    YoloV5 Train (2022). Yolo Find Text Dataset [Dataset]. https://universe.roboflow.com/yolov5-train/yolo-find-text
    Explore at:
    zipAvailable download formats
    Dataset updated
    Jul 17, 2022
    Dataset authored and provided by
    YoloV5 Train
    License

    MIT Licensehttps://opensource.org/licenses/MIT
    License information was derived automatically

    Variables measured
    Text Bounding Boxes
    Description

    Yolo Find Text

    ## Overview
    
    Yolo Find Text is a dataset for object detection tasks - it contains Text annotations for 290 images.
    
    ## Getting Started
    
    You can download this dataset for use within your own projects, or fork it into a workspace on Roboflow to create your own model.
    
      ## License
    
      This dataset is available under the [MIT license](https://creativecommons.org/licenses/MIT).
    
  11. R

    Ssd Training Dataset

    • universe.roboflow.com
    zip
    Updated Apr 4, 2022
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Jamiya Mendoza (2022). Ssd Training Dataset [Dataset]. https://universe.roboflow.com/jamiya-mendoza/ssd-training-dataset
    Explore at:
    zipAvailable download formats
    Dataset updated
    Apr 4, 2022
    Dataset authored and provided by
    Jamiya Mendoza
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Variables measured
    Face Mask Bounding Boxes
    Description

    SSD Training Dataset

    ## Overview
    
    SSD Training Dataset is a dataset for object detection tasks - it contains Face Mask annotations for 4,916 images.
    
    ## Getting Started
    
    You can download this dataset for use within your own projects, or fork it into a workspace on Roboflow to create your own model.
    
      ## License
    
      This dataset is available under the [CC BY 4.0 license](https://creativecommons.org/licenses/CC BY 4.0).
    
  12. R

    Srt Yolo Train Dataset

    • universe.roboflow.com
    zip
    Updated Dec 1, 2024
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    SRT (2024). Srt Yolo Train Dataset [Dataset]. https://universe.roboflow.com/srt-8ze3b/srt-yolo-train
    Explore at:
    zipAvailable download formats
    Dataset updated
    Dec 1, 2024
    Dataset authored and provided by
    SRT
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Variables measured
    Human Cone Bounding Boxes
    Description

    SRT Yolo Train

    ## Overview
    
    SRT Yolo Train is a dataset for object detection tasks - it contains Human Cone annotations for 305 images.
    
    ## Getting Started
    
    You can download this dataset for use within your own projects, or fork it into a workspace on Roboflow to create your own model.
    
      ## License
    
      This dataset is available under the [CC BY 4.0 license](https://creativecommons.org/licenses/CC BY 4.0).
    
  13. R

    Training Yolo Model Using Golf Course For Grass Damages Dataset

    • universe.roboflow.com
    zip
    Updated May 15, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    golf course data (2025). Training Yolo Model Using Golf Course For Grass Damages Dataset [Dataset]. https://universe.roboflow.com/golf-course-data/training-yolo-model-using-golf-course-dataset-for-grass-damages
    Explore at:
    zipAvailable download formats
    Dataset updated
    May 15, 2025
    Dataset authored and provided by
    golf course data
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Variables measured
    Objects Bounding Boxes
    Description

    Training YOLO Model Using Golf Course Dataset For Grass Damages

    ## Overview
    
    Training YOLO Model Using Golf Course Dataset For Grass Damages is a dataset for object detection tasks - it contains Objects annotations for 1,178 images.
    
    ## Getting Started
    
    You can download this dataset for use within your own projects, or fork it into a workspace on Roboflow to create your own model.
    
      ## License
    
      This dataset is available under the [CC BY 4.0 license](https://creativecommons.org/licenses/CC BY 4.0).
    
  14. R

    Yolov8 Training Dataset

    • universe.roboflow.com
    zip
    Updated Nov 9, 2024
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    project (2024). Yolov8 Training Dataset [Dataset]. https://universe.roboflow.com/project-x7qr0/yolov8-training-ptg34/model/2
    Explore at:
    zipAvailable download formats
    Dataset updated
    Nov 9, 2024
    Dataset authored and provided by
    project
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Variables measured
    Objects Bounding Boxes
    Description

    Yolov8 Training

    ## Overview
    
    Yolov8 Training is a dataset for object detection tasks - it contains Objects annotations for 637 images.
    
    ## Getting Started
    
    You can download this dataset for use within your own projects, or fork it into a workspace on Roboflow to create your own model.
    
      ## License
    
      This dataset is available under the [CC BY 4.0 license](https://creativecommons.org/licenses/CC BY 4.0).
    
  15. R

    The I_ai Training Dataset

    • universe.roboflow.com
    zip
    Updated Oct 27, 2023
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    MTR (2023). The I_ai Training Dataset [Dataset]. https://universe.roboflow.com/mtr-reh5c/the-i_ai-training
    Explore at:
    zipAvailable download formats
    Dataset updated
    Oct 27, 2023
    Dataset authored and provided by
    MTR
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Variables measured
    Guns Bounding Boxes
    Description

    THE I_AI Training

    ## Overview
    
    THE I_AI Training is a dataset for object detection tasks - it contains Guns annotations for 264 images.
    
    ## Getting Started
    
    You can download this dataset for use within your own projects, or fork it into a workspace on Roboflow to create your own model.
    
      ## License
    
      This dataset is available under the [CC BY 4.0 license](https://creativecommons.org/licenses/CC BY 4.0).
    
  16. R

    Yolo Detection Final Training Dataset

    • universe.roboflow.com
    zip
    Updated May 22, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    ABBRock Bolt Detection (2025). Yolo Detection Final Training Dataset [Dataset]. https://universe.roboflow.com/abbrock-bolt-detection/yolo-detection-final-training/dataset/1
    Explore at:
    zipAvailable download formats
    Dataset updated
    May 22, 2025
    Dataset authored and provided by
    ABBRock Bolt Detection
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Variables measured
    Rock Bolts Polygons
    Description

    YOLO Detection Final Training

    ## Overview
    
    YOLO Detection Final Training is a dataset for instance segmentation tasks - it contains Rock Bolts annotations for 273 images.
    
    ## Getting Started
    
    You can download this dataset for use within your own projects, or fork it into a workspace on Roboflow to create your own model.
    
      ## License
    
      This dataset is available under the [CC BY 4.0 license](https://creativecommons.org/licenses/CC BY 4.0).
    
  17. R

    Ia Training Dataset

    • universe.roboflow.com
    zip
    Updated May 16, 2023
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Licence 3 ESPM (2023). Ia Training Dataset [Dataset]. https://universe.roboflow.com/licence-3-espm/ia-training
    Explore at:
    zipAvailable download formats
    Dataset updated
    May 16, 2023
    Dataset authored and provided by
    Licence 3 ESPM
    License

    MIT Licensehttps://opensource.org/licenses/MIT
    License information was derived automatically

    Variables measured
    Hips Barbell Bounding Boxes
    Description

    IA Training

    ## Overview
    
    IA Training is a dataset for object detection tasks - it contains Hips Barbell annotations for 438 images.
    
    ## Getting Started
    
    You can download this dataset for use within your own projects, or fork it into a workspace on Roboflow to create your own model.
    
      ## License
    
      This dataset is available under the [MIT license](https://creativecommons.org/licenses/MIT).
    
  18. R

    Video Training Dataset

    • universe.roboflow.com
    zip
    Updated Aug 2, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    ZIAUDDIN UNIVERSITY (2025). Video Training Dataset [Dataset]. https://universe.roboflow.com/ziauddin-university-9hbwa/video-training
    Explore at:
    zipAvailable download formats
    Dataset updated
    Aug 2, 2025
    Dataset authored and provided by
    ZIAUDDIN UNIVERSITY
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Variables measured
    Helmet Shoe Vest Helmet Vest Shoes Bounding Boxes
    Description

    Video Training

    ## Overview
    
    Video Training is a dataset for object detection tasks - it contains Helmet Shoe Vest Helmet Vest Shoes annotations for 3,111 images.
    
    ## Getting Started
    
    You can download this dataset for use within your own projects, or fork it into a workspace on Roboflow to create your own model.
    
      ## License
    
      This dataset is available under the [CC BY 4.0 license](https://creativecommons.org/licenses/CC BY 4.0).
    
  19. R

    New Training Dataset

    • universe.roboflow.com
    zip
    Updated Mar 29, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Unannotated (2025). New Training Dataset [Dataset]. https://universe.roboflow.com/unannotated/new-dataset-training/model/1
    Explore at:
    zipAvailable download formats
    Dataset updated
    Mar 29, 2025
    Dataset authored and provided by
    Unannotated
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Variables measured
    Boxes Bounding Boxes
    Description

    New Dataset Training

    ## Overview
    
    New Dataset Training is a dataset for object detection tasks - it contains Boxes annotations for 627 images.
    
    ## Getting Started
    
    You can download this dataset for use within your own projects, or fork it into a workspace on Roboflow to create your own model.
    
      ## License
    
      This dataset is available under the [CC BY 4.0 license](https://creativecommons.org/licenses/CC BY 4.0).
    
  20. R

    Computer Vision Yolov8 Training Dataset

    • universe.roboflow.com
    zip
    Updated Nov 9, 2024
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Computer Vision (2024). Computer Vision Yolov8 Training Dataset [Dataset]. https://universe.roboflow.com/computer-vision-nossb/computer-vision-yolov8-training
    Explore at:
    zipAvailable download formats
    Dataset updated
    Nov 9, 2024
    Dataset authored and provided by
    Computer Vision
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Variables measured
    COTS Fish Coral Bounding Boxes
    Description

    Computer Vision YOLOv8 Training

    ## Overview
    
    Computer Vision YOLOv8 Training is a dataset for object detection tasks - it contains COTS Fish Coral annotations for 637 images.
    
    ## Getting Started
    
    You can download this dataset for use within your own projects, or fork it into a workspace on Roboflow to create your own model.
    
      ## License
    
      This dataset is available under the [CC BY 4.0 license](https://creativecommons.org/licenses/CC BY 4.0).
    
Share
FacebookFacebook
TwitterTwitter
Email
Click to copy link
Link copied
Close
Cite
Bilel (2024). Yolo_training Dataset [Dataset]. https://universe.roboflow.com/bilel-0p6mi/yolo_training-gez6x/model/2

Yolo_training Dataset

yolo_training-gez6x

yolo_training-dataset

Explore at:
2 scholarly articles cite this dataset (View in Google Scholar)
zipAvailable download formats
Dataset updated
May 20, 2024
Dataset authored and provided by
Bilel
License

Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
License information was derived automatically

Variables measured
Carre SV Oeil Bounding Boxes
Description

YOLO_training

## Overview

YOLO_training is a dataset for object detection tasks - it contains Carre SV Oeil annotations for 203 images.

## Getting Started

You can download this dataset for use within your own projects, or fork it into a workspace on Roboflow to create your own model.

  ## License

  This dataset is available under the [CC BY 4.0 license](https://creativecommons.org/licenses/CC BY 4.0).
Search
Clear search
Close search
Google apps
Main menu