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
Profile picture
TartSeal39
Moderator
2 Questions, 10 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0

Badges 1

10 × Eureka!
0 Votes
18 Answers
759 Views
0 Votes 18 Answers 759 Views
hello everyone! Did you already establish any best practises on passing arguments/secrets to a remote machine while using task.execute_remotely() ? My usecas...
3 years ago
0 Votes
5 Answers
741 Views
0 Votes 5 Answers 741 Views
Hello people, is there an easy way for clearml to work with .yml files as requirements file for task.create() without adjusting them manually? My repos requi...
2 years ago
0 Hello Everyone! Did You Already Establish Any Best Practises On Passing Arguments/Secrets To A Remote Machine While Using 

sure 🙂 an access token for an Azure storage blob. I could also just do more granular tokens with a smaller lifespan, but I was wondering if there is another solution

3 years ago
0 Hello Everyone! Did You Already Establish Any Best Practises On Passing Arguments/Secrets To A Remote Machine While Using 

yes, I also saw that, but unfortunately the clearml.config of my remote machine is stored in Azure as well, so we’d have the same access/permission/authentication problem again.
But thank you for your input!

3 years ago
0 Hello Everyone! Did You Already Establish Any Best Practises On Passing Arguments/Secrets To A Remote Machine While Using 

hm, I see. Thank you! Do you see an option of transferring a simple, untracked file with execute_remotely() ? If this config file wouldn’t be tracked by github (so not part of the repo) then it would solve my problem

3 years ago
0 Hello Everyone! Did You Already Establish Any Best Practises On Passing Arguments/Secrets To A Remote Machine While Using 

I wanted to access an Azure Storage Blob via an SAS token string, since this is how we built the codebase.

3 years ago
0 Hello Everyone! Did You Already Establish Any Best Practises On Passing Arguments/Secrets To A Remote Machine While Using 

yes, that would be the solution which would make the most sense, thanks a lot! 🙂

3 years ago
0 Hello Everyone! Did You Already Establish Any Best Practises On Passing Arguments/Secrets To A Remote Machine While Using 

thank you so much SuccessfulKoala55 ! 🥳 Accessing the variables with sys.argv didn’t work, but using argparse is working just fine!

3 years ago
0 Hello Everyone! Did You Already Establish Any Best Practises On Passing Arguments/Secrets To A Remote Machine While Using 

Me again, SuccessfulKoala55 : would you also see an option for achieving this without having the token/string logged into clearml in plaintext? With argparse it’s stored as hyperparameter unfortunately.. Could I somehow prevent the logging of argparse by deleting the parser or such?

3 years ago
0 Hello Everyone! Did You Already Establish Any Best Practises On Passing Arguments/Secrets To A Remote Machine While Using 

no, it’s a command-line argument now. Bc if it was in the code, it would be logged by github and I wanted to avoid having an access token logged in plaintext. That’s why argparse seemed to be nice to transfer it via commandline and not via code.
I tried parsing - storing as environment variable - deleting the parser object, but this wouldn’t work unfortunately

3 years ago
0 Hello People, Is There An Easy Way For Clearml To Work With

yeah, so I want to do Task.create(reqirements_file=‘/path/to/file/requirements.yml’), but I think I’ll just parse it manually then

2 years ago
0 Hello People, Is There An Easy Way For Clearml To Work With

oh, right, I get that, thanks 🙂 So my repo is usually just built with the yaml, so for now, I don’t have a requirements.txt in the repo, since it’s not needed. But for the time being, I’ll just parse the requirements from the yaml file and add them with add_requirement() , thanks for the insight 🙂

2 years ago