Replies: 1 comment 1 reply
-
Add the --upgrade option to your pip3 torch install, should uninstall pytorch <2 and allows ultralytics to use new pytorch version For example: |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello community,
i am having a strange anomaly when trying to train in my jupyter notebook using the following command:
from ultralytics import YOLO
model = YOLO("yolov8x-seg_custom.yaml")
results = model.train(data="custom_data.yaml", epochs=1000, workers=1, batch=20, imgsz=640) # train the model
training works, but i get the misleading information:
I don't get it. I use conda list to check my actual torch version and it cleary returns:
What can i do to fix this? When i try pip install and upgrade the torch, it says its already satisfied.
Thank you very much in advance!
Beta Was this translation helpful? Give feedback.
All reactions