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


Hi @<1644147961996775424:profile|HurtStarfish47> ,

ClearML will automatically upload you model with the original name and data, if not mistaken, best.pt is given by default from the train function.

You can rename it after the training and upload it, something like:

import shutil

# Rename best model checkpoint after training
shutil.move("runs/train/my_model/weights/best.pt", "my_model.pt")

# upload with the StorageManager
model_path = "my_model.pt"
# Define your S3 URL path (bucket and folder), e.g., 

s3_path = "
"

# Upload the file to S3
uploaded_model_path = StorageManager.upload_file(local_path=model_path, remote_url=s3_path)

print(f"Model uploaded to {uploaded_model_path}")
  
  
Posted 18 days ago
6 Views
0 Answers
18 days ago
18 days ago