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
TimelyPenguin76
Administrator Moderator
0 Questions, 711 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0
0 Hey Again

yap, that should do the trick

4 years ago
0 Hey Again

Hi JitteryCoyote63 ,

Sure you can, you have many https://allegro.ai/docs/use_cases/trains_agent_use_case_examples/ , just pick to one you need πŸ™‚

4 years ago
0 Hey I Use The Clearml-Agent. In The Code I Have The Two Lines I Need. When I Run The Program It Shows That My Program Is Running On The Demo Trains Page. But I Want It To Run On My Own Server. I Tried To Register And Then Use The Following Page:

Hi UnsightlySeagull42 ,

The clearml-agent use the credentials from your ~/clearml.conf file, if you changed those, you will need to re-run the clearml-agent.
Can you verify that your clearml-agent is running with the credentials of your https://app.community.clear.ml/dashboard ? if so, can you re-run it with config-file option?

clearml-agent --config-file <path to your clearml.conf file> daemon …

3 years ago
0 Hey I Use The Clearml-Agent. In The Code I Have The Two Lines I Need. When I Run The Program It Shows That My Program Is Running On The Demo Trains Page. But I Want It To Run On My Own Server. I Tried To Register And Then Use The Following Page:

πŸ‘

Can you upgrade from trains to ClearML ?

pip install clearml for installing it, and from your code change
from trains import task to from clearml import task

3 years ago
0 Hi. One Question Regarding Instantiation Of Tasks. The Docu States That Providing

If this is the case (you have results and you want a new task to connect to each result), you can just clone the base task, update task parameters and enqueue it for execution (similar to https://github.com/allegroai/trains/blob/master/examples/automation/manual_random_param_search_example.py example), can this do the trick?

4 years ago
0 I'M Running Multiple Trains-Agents On One Bfg-9000 Machine. Is There A Way To Stop Only One Agent?

Hi WackyRabbit7

You can get all the agents PIDs by
ps -ef | grep "trains-agent"and kill -9 <pid> for the requested agent.

You can also pkill -f "trains-agent --gpus 0" Β  - This will kill a process that started trains-agent --gpus 0 .
Notice it matches the cmd pattern so it has to match the way you executed the trains-agent. This can be checked withΒ  ps -Af | grep trains-agent

4 years ago
0 Is There Some

Hi ReassuredTiger98 ,

try:
` from clearml.config import running_remotely

if running_remotely():
... `

3 years ago
2 years ago
0 Hi, I Just Updated Clearml To Version V1.1.3. Right After Launching A Training Pipeline, The System Crashed Due To The Following Error:

Thanks GiganticTurtle0 , I was able to reproduce it, a fix will be out shortly, will keep you update about it in this thread

3 years ago
3 years ago
3 years ago
0 Hi, I Have A Question Regarding The New

If you want to get the pipeline task from a pipeline step, try Task.current_task().parent

3 years ago
0 Hi, I Have A Question Regarding The New

Hi GiganticTurtle0 ,

You have all the tasks that are part of the pipeline in an execution table (with links) under plots section, does it helps?

3 years ago
0 Hi, Not Sure If I'M Doing Something Wrong Or I Found A Bug. When I Try To Overwrite Some Parameters In A Cloned Task Using

When connecting a nested dict the keys will be in the struct of period/end and period/start , so those are the keys you need to change, in additional to the section name, General if name not given.

This should work for example in your example:

` cloned_task = Task.clone(source_task=template_task,
name=template_task.name+' for params', parent=template_task.id)

put back into the new cloned task

cloned_task.set_parameters({"General/period/start": "...

3 years ago
0 I Have Some Problems With The Hyperparameters.

I hope you understand what I mean

yes πŸ™‚

let me check that

3 years ago
0 Hi Again, I Am Trying To Make The Aws Autoscaler Work With Ec2 Instances, But It Fails To Setup The Agent In The Machine: The Logs Of The User-Data Script Show That It Fails Updating The Machine (See Below)

agree

E: Could not get lock /var/lib/apt/lists/lock - open (11: Resource temporarily unavailable)Another process is using the lock, can you specify the ami (and region) so I can try to reproduce it?

3 years ago
Show more results compactanswers