Error upload custom weights yolov11

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

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.