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
Help Please. I Have My Clearml Server Running In A Docker Container. Now, I Am Training My Ml Models In Another Docker Container. I Want To Track These Models With My Clearml Server Located In The First Container. What Configuration Do I Need To Do?

Help please. I have my ClearML server running in a Docker container. Now, I am training my ML models in another Docker container. I want to track these models with my ClearML server located in the first container. What configuration do I need to do?

  
  
Posted 28 days ago
Votes Newest

Answers 2


Hi @<1673501397007470592:profile|RelievedDuck3> , you simply need to integrate clearml into your code.

from clearml import Task
task = Task.init(...)

More info here:
None

  
  
Posted 28 days ago

Just that. Thank you.

  
  
Posted 28 days ago
76 Views
2 Answers
28 days ago
28 days ago
Tags
Similar posts