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
Hello Community. I Am A Complete Newbie To Clearml. I'Ve Watched Tutorial Videos And Read The Documentation, But Have Been Facing Some Issues On A Task. I Have A Codebase That I Was Recently Introduced To, A Trained Model And And An Image Data (Nifti) To

Hello Community. I am a complete newbie to ClearML. I've watched tutorial videos and read the documentation, but have been facing some issues on a task. I have a codebase that I was recently introduced to, a trained model and and an image data (nifti) to predict the model on. The dependencies are in a .toml file. I initialized a task with initially generating a requirements.txt file but it somehow didn't work. Is there a way to install the dependencies on the remote server from pyproject.toml file? I have used task.init and task.excute_remotely in the "predict.py" code, and then run "clearml-agent daemon --queue default" after queuing. Is there something else I need to do here to run an inference on a test data and log results using clearML? Any help would be appreciated. Thanks.

  
  
Posted 2 months ago
Votes Newest

Answers 2


Hi @<1523701087100473344:profile|SuccessfulKoala55> Thanks. This worked.

  
  
Posted 2 months ago

Hi @<1715175986749771776:profile|FuzzySeaanemone21> , you can set your agent to use Poetry as the package manager (see here ). If a pyproject.toml file exists in the repository, it will use it.

  
  
Posted 2 months ago
280 Views
2 Answers
2 months ago
2 months ago
Tags