You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to run YoloV8 on my AMD RX550 using DirectML and every time i run the training it fails with this error
RuntimeError: Cannot set version_counter for inference tensor
from ultralytics import YOLO import torch_directml model = YOLO("yolov8n.yaml") dml = torch_directml.device() model.train(data="config.yaml", epochs=200, device=dml)
This works properly if i set device="cpu"
Please help me with this.. I'm new to Machine learning stuff.
The text was updated successfully, but these errors were encountered:
I am trying to run YoloV8 on my AMD RX550 using DirectML and every time i run the training it fails with this error
RuntimeError: Cannot set version_counter for inference tensor
from ultralytics import YOLO
import torch_directml
model = YOLO("yolov8n.yaml")
dml = torch_directml.device()
model.train(data="config.yaml", epochs=200, device=dml)
This works properly if i set
device="cpu"
Please help me with this.. I'm new to Machine learning stuff.
The text was updated successfully, but these errors were encountered: