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
How Do I Create An Experiment Where I Can Set The Github Repository/Branch Name/Script Path Like This Example Shows?

How do I create an experiment where I can set the github repository/branch name/script path like this example shows?

  
  
Posted one year ago
Votes Newest

Answers 6


Yep, exactly 🙂

  
  
Posted one year ago

If you run inside a repository, then yes

  
  
Posted one year ago

okay makes sense now, thanks!

  
  
Posted one year ago

Hi BoredHedgehog47 , You need to add
from clearml import Task task = Task.init(project_name='examples', task_name='hello world')to your code and run it once after you've ran clearml-init

  
  
Posted one year ago

gotcha, I see how that is populated now. So then if my workers have git credentials, a user can clone that experiment and run on a worker?

  
  
Posted one year ago

It will then parse the above information from my local workstation?

  
  
Posted one year ago