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
Unanswered
Hello, I Am Using The Clearml Integration With Ultralytics. I Have Very Simple Code

Hello, I am using the clearml integration with ultralytics. I have very simple code

task = Task.init(project_name="YOLO", task_name=ds_name, output_uri="
")
model = YOLO(model_base)
results = model.train()

The output model is properly uploaded to my bucket as " best.pt ". How can I specify a different filename for this model ?

  
  
Posted 22 hours ago
Votes Newest

Answers