datasets/ #9215
Replies: 17 comments 46 replies
-
What is the format of the labels text files and are they related to annotations file? |
Beta Was this translation helpful? Give feedback.
-
The example above for the custom dataset structure is the following: I am trying to use a custom dataset to train a classification model. It kept erroring for not finding the data. For classification, should I structure like the following? What's the correct data structure? |
Beta Was this translation helpful? Give feedback.
-
Does the pixel size of the dataset picture have to be 640x640? |
Beta Was this translation helpful? Give feedback.
-
Hi! In case I would like to train on one channel object detection images, what is the best way to load the dataset? Thanks ahead |
Beta Was this translation helpful? Give feedback.
-
Hey I need some help . Actually I am doing an object detection and I have only 3 images. So I do data augmentation on these 3 images ang generate 90 images. Now in every image there are around 200 objects which are of very small size and are attached to each other. So it took me more than half hour to annotate a single image. It is very time consuming and boring. I have one idea I take those original 3 images and do labelling for those 3 images and then do data augmentation on these 3 images and my label also get augmentated according to the generated images automatically. Please help me. Actually I see these feature on roboflow website but it is paid. |
Beta Was this translation helpful? Give feedback.
-
I'm trying to use yolov8 to train my own dataset. But I have a question about the labels. There are 5 values in the label .txt file, that is c,x,y,w,h. Here x,y mean the center or the top-left postion of the anchor ? Thanks ! |
Beta Was this translation helpful? Give feedback.
-
Thanks for your answering. I still have a question about the original coordinate of the image label,that is,(0,0)point. It is the top-left or the bottom-right position?Thanks a lot!
…---Original---
From: "Paula ***@***.***>
Date: Fri, May 31, 2024 20:29 PM
To: ***@***.***>;
Cc: ***@***.******@***.***>;
Subject: Re: [ultralytics/ultralytics] datasets/ (Discussion #9215)
@AlexZhao2020 in the YOLO label .txt files, the values x and y represent the center coordinates of the bounding box, not the top-left position. The coordinates are normalized by the dimensions of the image, meaning they are relative to the width and height and should range between 0 and 1. If you have any more questions or need further clarification, feel free to ask! 😊
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you were mentioned.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
Is there a way to have another split "test"?, I believe having the train/test/val splits could help avoid overfitting, I'm facing that right now. |
Beta Was this translation helpful? Give feedback.
-
comment je peux entrainer dans mon code dataset visdrone pour détecter les véhicules avec des drones ?? |
Beta Was this translation helpful? Give feedback.
-
Hello, I'm new to machine learning, is it possible to train videos? i turned them into imgs however will it understand that the label belongs to continuous imgs that are sequential ? Thank you for reading |
Beta Was this translation helpful? Give feedback.
-
I have 47 classes csv file. each file contains 100 images in csv formate with label. now how I can traine it? |
Beta Was this translation helpful? Give feedback.
-
Hello, |
Beta Was this translation helpful? Give feedback.
-
I am absolute newbiew in machine learning coming from the world of low-level and system programming (drivers, firmware, electronics and so on). I have some questions.
Should I feed NN with a pictures which doesn't have objects of interest at all or it is useless?
|
Beta Was this translation helpful? Give feedback.
-
Hello. I hope you are doing well. I have paired RGB and thermal images, and I want to train yolov9 with 4 channel data. I want the model to read the first 3 channels from the RGB folder, and the thermal image from the thermal folder. all of the paired images have the same name, they are in different folders named ir, and vi. can you please help me how I should address this to the model? |
Beta Was this translation helpful? Give feedback.
-
I am usually interested in understanding what data I am adding to my dataset, as this can be beneficial or harmful depending on the project. I am trying to initialize the YOLO dataset to apply transformations required by the training parameters, but I often encounter errors. Thank you in advance for your help! from ultralytics.data.dataset import YOLODataset, v8_transforms class Hyperparameters: Initialize the YOLO datasetdataset = YOLODataset( Define hyperparameters for transformationshyp = { hyperparams = Hyperparameters(hyp) Apply transformations to the datasettransforms = v8_transforms(dataset, imgsz=640, hyp=hyperparams) Attempt to augment dataaugmented_data = transforms(dataset[0]) albumentations: Blur(p=0.01, blur_limit=(3, 7)), MedianBlur(p=0.01, blur_limit=(3, 7)), ToGray(p=0.01, num_output_channels=3, method='weighted_average'), CLAHE(p=0.01, clip_limit=(1, 4.0), tile_grid_size=(8, 8)) Error Encountered |
Beta Was this translation helpful? Give feedback.
-
Hi, I wanted to use MVTec dataset for training in Ultralytics framework with yolo. But the dataset doesnt have labelling but instead it has ground_truth with some parameters and masking. Is it possible to make a yaml file for the MVTec dataset (most easiest way)? Thanks. |
Beta Was this translation helpful? Give feedback.
-
Hi, IntroductionFor a couple of days now, I am trying to set YOLOv8 in classification mode in order to classify flowers in the images of the Oxford Flower dataset (i.e. https://www.robots.ox.ac.uk/~vgg/data/flowers/102/). The errorHowever, I am the obtaining error: Dataset not found My code
My yaml fileThe content of my .yaml file is: names:
Data directoriesThe directories of my data is exactly the way your colleague / member "pderrenger" describes it in her message of March 30th 2024. It looks like: dataset/ Labels.txt contentThe content of labels.txt is: image_06734.txt 1 QuestionWhy is it unable to find the data? What I am I missing |
Beta Was this translation helpful? Give feedback.
-
datasets/
Explore various computer vision datasets supported by Ultralytics for object detection, segmentation, pose estimation, image classification, and multi-object tracking.
https://docs.ultralytics.com/datasets/
Beta Was this translation helpful? Give feedback.
All reactions