Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
I Am Currently Training A Yolo Model Using The Yolov5 Framework Within A Container. I Am Using The --Project And --Name Flags During The Training Process, But Unfortunately, The Training Results Are Not Being Sent To The Server. Instead, They Are Being Fo

I am currently training a YOLO model using the YOLOv5 framework within a container. I am using the --project and --name flags during the training process, but unfortunately, the training results are not being sent to the server. Instead, they are being formed inside the container with the project and name specified by the flags.

command :

python3 train.py --img 320 --data data/data.yaml --batch 32 --epochs 3 --weights yolov5s.pt --project sriram --name test
  
  
Posted 3 months ago
Votes Newest

Answers 2


(additional message removed from main channel, content attached)

it is saving the results in
sriram/test/<results>

  
  
Posted 3 months ago

Hi @<1639074542859063296:profile|StunningSwallow12> !
This happens because the output_uri in Task.init is likely not set.
You could either set the env var CLEARML_DEFAULT_OUTPUT_URI to the file server you want the model to be uploaded to before running train.py or set sdk.development.default_upload_uri: true (or to the file server you want the model to be uploaded to) in your clearml.conf .
Also, you could call Task.init(output_uri=True) in your train.py script.

  
  
Posted 3 months ago
230 Views
2 Answers
3 months ago
3 months ago
Tags
Similar posts