Bug in validation dataset name #24682
-
|
Bug in validation dataset name. Dear team, At this link https://platform.ultralytics.com/ultralytics/yolo26 , I think this is a bug. I tried 10 different file names for the datasets, but I was unsuccessful. Please see the attached file. Best regards,
|
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 4 replies
-
|
👋 Hello @donhuvy, thank you for reporting this potential bug in the validation dataset name workflow on the Ultralytics Platform 🚀 This is an automated response to help gather the right details quickly, and an Ultralytics engineer will also assist you soon. We recommend a quick visit to the Docs where you can find many Python and CLI usage examples and where many of the most common questions may already be answered. Since this appears to be a 🐛 Bug Report, please provide a minimum reproducible example to help us debug it. 🙏
If this is a custom training ❓ Question, please provide as much information as possible, including dataset image examples and training logs, and verify you are following our Tips for Best Training Results. Join the Ultralytics community where it suits you best. For real-time chat, head to Discord 🎧. Prefer in-depth discussions? Check out Discourse. Or dive into threads on our Subreddit to share knowledge with the community. UpgradeUpgrade to the latest pip install -U ultralyticsEnvironmentsYOLO may be run in any of the following up-to-date verified environments (with all dependencies including CUDA/CUDNN, Python and PyTorch preinstalled):
StatusIf this badge is green, all Ultralytics CI tests are currently passing. CI tests verify correct operation of all YOLO Modes and Tasks on macOS, Windows, and Ubuntu every 24 hours and on every commit. |
Beta Was this translation helpful? Give feedback.
-
|
Thank you, bro. I know you YOLO's founder 👍 . I tried to upload my dataset (object detection), Is 5 GB and 2000 images (30200 images objects) ok for uploading? Maybe you consider make user interace more easier to understand. I did not know what is next step . I train model at local success, just try to upload online for impression my master thesis supervisor. My data set
for this mobile app https://score.donhuvy.com/ |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
|
I have file # Ultralytics 🚀 AGPL-3.0 License - https://ultralytics.com/license
# Brain-tumor dataset by Ultralytics
# Documentation: https://docs.ultralytics.com/datasets/detect/brain-tumor/
# Example usage: yolo train data=brain-tumor.yaml
# parent
# ├── ultralytics
# └── datasets
# └── brain-tumor ← downloads here (4.21 MB)
# Train/val/test sets as 1) dir: path/to/imgs, 2) file: path/to/imgs.txt, or 3) list: [path/to/imgs1, path/to/imgs2, ..]
path: brain-tumor # dataset root dir
train: images/train # train images (relative to 'path') 893 images
val: images/val # val images (relative to 'path') 223 images
test: # test images (relative to 'path')
# Classes
names:
0: A
1: B
2: C
3: D
# Download script/URL (optional)
download: https://github.com/ultralytics/assets/releases/download/v0.0.0/brain-tumor.zip |
Beta Was this translation helpful? Give feedback.




The YAML filename is not the issue here; per the Brain Tumor dataset docs, the official
brain-tumor.yamlis a 2-class dataset (negative,positive) withtrain: images/trainandval: images/val, so yournamesblock with 4 classes will only work if your label files also use class IDs0-3. After correcting the YAML/labels, delete anylabels/*.cachefiles and retry, and if it still fails please paste the full text error plusyolo checksoutput.