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 2 years ago

Reputation

0
0 Hi , I Have This Use Case.

With this scenario, your data should be updated when running the pipeline

3 years ago
2 years ago
0 I Have A Question Regarding "Imitating" An Agent Pulling Some Task For Debugging Purposes I Am Trying To Do Something Like: Creating A Task On The Server

DepressedChimpanzee34 how do you generate the task thats running remotely? once the agent pulled the task, this is your running configuration (it will pull the same configuration from the server as you see in the UI)

3 years ago
0 We'Re Trying To Use The Aws Autoscaler And Have Managed To Get It Up And Running With Spinning Up Instances. However, It Does Not Seem To Pull Any Of The Tasks For The Remote Instances. We See It Gets

Hi UnevenDolphin73 ,

try to re run it, a new instance will be created, under this specific instance Actions you have Monitoring and troubleshoot, and you can select Get system logs
I want to verify you scaler doesnt have any failures in this log

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 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

I just tried and everything works.

I run this for the template task:

` from clearml import Task

task = Task.init(project_name="Examples", task_name="task with connected dict")

period = {"start": "2020-01-01 00:00", "end": "2020-12-31 23:00"}

task.connect(period, name="period") `

and this for the clone one:

` from clearml import Task

template_task = Task.get_task(task_id="<Your template task id>")
cloned_task = Task.clone(source_task=template_task,
name=templat...

3 years ago
0 Hi - What Is The Difference Between

Hi TeenyFly97 ,

With task.close() the task will do a full shutdown process. This includes repo detection, logs, metrics and artifacts flush, and more. The task will not be the running task anymore and you can start a new task.

With task.mark_stopped() , the task logs will be flushed and the task will mark itself as stopped, but will not perform the full shutdown process, so the current_task will still be this task.

For example:
` from trains import Task

task = Task.in...

4 years ago
0 What Does It Mean To Publish A Model Or A Dataset?

You are definitely right! We will fix this issue, Thanks 🙂

3 years ago
0 Hi Guys, Suppose I Have The Following Script:

Hi GiganticTurtle0 ,

All the packages you are using should be under installed packages section in your task (in the UI). ClearML analyze and the full report should be under this section.

You can add any package you like with Task.add_requirements('tensorflow', '2.4.0') for tensorflow version 2.4.0 (or Task.add_requirements('tensorflow', '') for no limit).

If you dont want the package analyzer, you can configure in your ~/clearml.conf file: ` sdk.development.detect_with_...

3 years ago
0 Hey, How Can I Point Trains To Look For It'S Train.Conf File In A Different Path Than ~/Trains.Conf?

You can configure env vars in your docker compose, but what is your scenario? Maybe there are some other solutions

4 years ago
0 Hey, How Can I Point Trains To Look For It'S Train.Conf File In A Different Path Than ~/Trains.Conf?

Hi SmarmySeaurchin8

You can configure TRAINS_CONFIG_FILE env var with the conf file you want to run it with. Can this do the trick?

4 years ago
0 I Want To Use The Pipelinecontroller Which Assumes A Task Already Been Executed And As Ready As Template. I Never Executed The Task Before And It Is A Very Long Running Task. Is There A Way To Create The Template Without Executing All The Way Through?

I only want to save it as a template so I can later call it in a pipeline

running with task.execute_remotely() it wont really run the task. it will start it and abort it, so you will have it Aborted , and this is your template task

3 years ago
3 years ago
0 Hi, Another Issue Is Faced When Using Mmdetection/Mmcv With Clearml. The Automatic Uploading Of Checkpoint Meets The Following Error:

NonchalantDeer14 thanks for the logs, do you maybe have some toy example I can run to reproduce this issue my side?

3 years ago
0 Is It Possible To Disable Vcs-Cache? I Tried To Change Value From True To False In The Trains.Conf, But It Does Not Affect Anything. I Want To Disable It, Because It Gives Error When I Run A Project Firstly On Docker Then On Venv.

Hi MysteriousBee56 .

What trains-agent version are you running? Do you run it docker mode (e.g.
trains-agent daemon --queue <your queue name> --docker?

4 years ago
Show more results compactanswers