Hello everyone, I trained with yolov11 and deploy upload custom weights to roboflow as below code snippet:
import roboflow
import torch
rf = roboflow.Roboflow(api_key="**************")
project = rf.workspace().project("hard-hat-sample-tuvf5")
#can specify weights_filename, default is "weights/best.pt"
version = project.version(15)
version.deploy("yolov11", "runs/detect/train5/weights", "best.pt")
but I had a this issues:
Can anyone tell me the method to fix this error