-
Hi all, I downloaded a dataset from Roboflow, which I stored here:
I ran the following block of code in my Jupyter notebook (train.ipynb):
But I encountered the following errors:
Please advise me on where to place and reference datasets, or provide a link to the relevant documentation. Thank you. |
Beta Was this translation helpful? Give feedback.
Answered by
weeix
Feb 22, 2023
Replies: 1 comment 1 reply
-
I was able to solve the issue by converting the relative path into an absolute path: from ultralytics import YOLO
model = YOLO("yolov8n.yaml")
model.train(data="/fullpath/to/my/datasets/mydataset/data.yaml", epochs=5) |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
weeix
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I was able to solve the issue by converting the relative path into an absolute path: