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 currently training YOLOv10 model in Google Colab using Custom Dataset, with the training progress saved in Google Drive folder. However, when i try to resume the training, the following error message shows :
/usr/local/lib/python3.10/dist-packages/wandb/sdk/wandb_settings.py in _validate(self, value)
568 )
569 for v in _validator:
--> 570 if not v(value):
571 # failed validation will likely cause a downstream error
572 # when trying to convert to protobuf, so we raise a hard error
/usr/local/lib/python3.10/dist-packages/wandb/sdk/wandb_settings.py in _validate_project(value)
1023 invalid_chars = {char for char in invalid_chars_list if char in value}
1024 if invalid_chars:
-> 1025 raise UsageError(
1026 f"Invalid project name {value!r}: "
1027 f"cannot contain characters {','.join(invalid_chars_list)!r}, "
UsageError: Invalid project name '/content/drive/MyDrive/yolov10': cannot contain characters '/,\,#,?,%,:', found '/' . How to resolve the problem ?
The text was updated successfully, but these errors were encountered:
I am currently training YOLOv10 model in Google Colab using Custom Dataset, with the training progress saved in Google Drive folder. However, when i try to resume the training, the following error message shows :
/usr/local/lib/python3.10/dist-packages/wandb/sdk/wandb_settings.py in _validate(self, value)
568 )
569 for v in _validator:
--> 570 if not v(value):
571 # failed validation will likely cause a downstream error
572 # when trying to convert to protobuf, so we raise a hard error
/usr/local/lib/python3.10/dist-packages/wandb/sdk/wandb_settings.py in _validate_project(value)
1023 invalid_chars = {char for char in invalid_chars_list if char in value}
1024 if invalid_chars:
-> 1025 raise UsageError(
1026 f"Invalid project name {value!r}: "
1027 f"cannot contain characters {','.join(invalid_chars_list)!r}, "
UsageError: Invalid project name '/content/drive/MyDrive/yolov10': cannot contain characters '/,\,#,?,%,:', found '/' . How to resolve the problem ?
The text was updated successfully, but these errors were encountered: