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
Happy Friday Everyone

Happy Friday Everyone 🙂 how can I apply uncommitted changes from a task manually to debug locally?

  
  
Posted 2 years ago
Votes Newest

Answers 3


BTW: if you only need the git diff you can just copy them from the UI into a txt file and do:
git apply <copied-diff.txt>

  
  
Posted 2 years ago

great thank you

  
  
Posted 2 years ago

Hi RobustRat47
the easiest way to reproduce the entire environment on you local machine:
clearml-agent build --id <task_id> --target ~/debug-full-env/This will install an entire venv including code and applying git changes:
You can also create a container with everything:
https://clear.ml/docs/latest/docs/clearml_agent#task-container

  
  
Posted 2 years ago
517 Views
3 Answers
2 years ago
one year ago
Tags