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
ShallowArcticwolf27
Moderator
4 Questions, 13 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0

Badges 1

13 × Eureka!
0 Votes
9 Answers
632 Views
0 Votes 9 Answers 632 Views
Hi friends! I'm trying to upgrade the https://aws.amazon.com/marketplace/pp/B085D8W5NM AMI over to ClearML. The steps seem easy enough, just docker compose d...
3 years ago
0 Votes
5 Answers
545 Views
0 Votes 5 Answers 545 Views
3 years ago
0 Votes
1 Answers
631 Views
0 Votes 1 Answers 631 Views
Does the clearml-task cli command currently support remote repositories with that are intended to be used with ssh? It seems to recognize repos with the http...
3 years ago
0 Votes
10 Answers
591 Views
0 Votes 10 Answers 591 Views
Is it possible to launch a clearml-task from the command line to a remote machine while loading a local .env file as a configuration object?
2 years ago
0 Hi Friends! I'M Trying To Upgrade The

Not intentional! When I launched the AMI it was running an older version of the trains software, so I just want the old docker file to shut all that stuff down so i can pull and compose the new docker stuff.

If that's not necessary and I can just kill all the current docker stuff running in the AMI and pull the new stuff i'm happy to do that!

3 years ago
0 Hi Friends! I'M Trying To Upgrade The

got it! I'll do that, thanks!

3 years ago
0 Hi Friends! I'M Trying To Upgrade The

Just referring to the first step on the github page

` Shut down the docker containers

docker-compose down Before pulling the new file and stuff. I seem to be in the weird situation where the docker stuff is all running (i assume, since the ami seems to be functioning properly and i can access the web ui and stuff) but I don't have the compose file, or at least can't seem to find it in /opt `

3 years ago
0 For Those Using Clearml For Model Storage - Do You Use It Just For Storing Checkpoints During Training, Or Do You Also Use It As A Canonical Storage Location For Fully Trained Models? Like For Services Using These Models That Are Deployed To Production, D

Yeah! I just wanted to make sure that it made sense to tag the models for production use and then have them loaded right out of the model repository and into the production service. As I've looked around at the API it definitely seems to support that use case. Really stoked to start using it and introduce a more sane ML ops workflow at my workplace lol.

3 years ago
0 For Those Using Clearml For Model Storage - Do You Use It Just For Storing Checkpoints During Training, Or Do You Also Use It As A Canonical Storage Location For Fully Trained Models? Like For Services Using These Models That Are Deployed To Production, D

For my own clarification, if I wanted to write a plugin that would listen for events to note when a model is set to is_ready and is a pytorch model, it runs some code to attempt to serialize it and then stores the new, serialized model in the model repository, would that be a Model Registry Store plugin?

3 years ago
0 Is It Possible To Launch A

I'll take a look at this this afternoon, thanks for your help

2 years ago
0 Is It Possible To Launch A

Is there a preferred way of passing environmental variables to a task? I'm willing to do it however, just the best way I've found to do it has been

` 1. Have a local .env variable on a client machine
2. Start script running on local laptop. connect_configuration pulls from the .env file
3. now in the clearml UI, the configuration_objects dropdown includes the environmental variables from my local machine necessary to run the script
4. I abort the run running from my laptop, and copy it onto ...

2 years ago
0 Is It Possible To Launch A

I would love to help add the functionality to do either, but adding the functionality to clearml-task sounds very attractive!

2 years ago
0 Is It Possible To Launch A

Yes, I would like the contents of the .env file to end up in the configuration_objects

Currently, I can do this if I first run the script locally, and then enqueue it to a remote machine through the UI

env_file = task.connect_configuration('.env', name='env_file') load_dotenv(dotenv_path=env_file, override=True)

2 years ago
0 Hi Friends! I'M Trying To Upgrade The

Right on, looks like I'm upgraded now! Thanks again.

3 years ago
0 Is It Possible To Launch A

Will do, thanks!

2 years ago
0 Is It Possible To Launch A

But instead I'd like to connect the configuration ahead of time while i'm submitting the task from the command line

2 years ago