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
DangerousMole43
Moderator
11 Questions, 16 Answers
  Active since 23 February 2023
  Last activity 17 days ago

Reputation

0

Badges 1

16 × Eureka!
0 Votes
4 Answers
436 Views
0 Votes 4 Answers 436 Views
7 months ago
0 Votes
1 Answers
655 Views
0 Votes 1 Answers 655 Views
Hi all, I have a question - is there a way to upload a local ( user local ) file to the pipeline as parameter? More specifically - I want the users to be abl...
one year ago
0 Votes
3 Answers
571 Views
0 Votes 3 Answers 571 Views
Hi all! Is there a way to rename the default "Args" name for task configuration that is being automatically created when the code contains argparse?
8 months ago
0 Votes
2 Answers
629 Views
0 Votes 2 Answers 629 Views
one year ago
0 Votes
2 Answers
517 Views
0 Votes 2 Answers 517 Views
Hi everyone 👋 I have a script that uses 3 git repos (organisational repos on github) for its execution. As part of this script I'm performing pull to these ...
10 months ago
0 Votes
3 Answers
558 Views
0 Votes 3 Answers 558 Views
Hi everyone! Small question - is it possible to associate an agent to a specific CPU?
9 months ago
0 Votes
1 Answers
478 Views
0 Votes 1 Answers 478 Views
9 months ago
0 Votes
2 Answers
97 Views
0 Votes 2 Answers 97 Views
23 days ago
0 Votes
4 Answers
730 Views
0 Votes 4 Answers 730 Views
one year ago
0 Votes
10 Answers
564 Views
0 Votes 10 Answers 564 Views
9 months ago
0 Votes
1 Answers
563 Views
0 Votes 1 Answers 563 Views
11 months ago
0 Hi Everyone! I Have A Question Regarding Running A Script Inside Docker Container With Clearml: I Build An Image Containing All Requirements To Run Some Python Script That Is Getting Arguments Via Argparse. When I Build A Wrapper Script That Will Run This

Hi @<1523701087100473344:profile|SuccessfulKoala55> ,
First - I initiate the agent using this command:
clearml-agent daemon --queue maytar_test_q --docker docker_image --detached --cpu-only

As for the task itself - I have a bash script inside the container that executes a python script (also located inside the container), that is getting arguments via argparse (so far, no clearml involved). To initiate the task - I run a very basic python script (out of the container) that initiates a ...

9 months ago
0 Hi Everyone! I Have A Question Regarding Running A Script Inside Docker Container With Clearml: I Build An Image Containing All Requirements To Run Some Python Script That Is Getting Arguments Via Argparse. When I Build A Wrapper Script That Will Run This

I can see from the console in the UI that a part of the command it's trying to run is:
'echo \'Binary::apt::APT::Keep-Downloaded-Packages "true";\' > /etc/apt/apt.conf.d/docker-clean'

and some more commands that I'm trying to understand why does my agent gets it. I'm going back and forth on the clearml config but everything I change doesn't seem to have any effect.

9 months ago
9 months ago
0 Hi Everyone

Thank you @<1523701087100473344:profile|SuccessfulKoala55> !

10 months ago
0 Hi All! Is There A Way To Rename The Default "Args" Name For Task Configuration That Is Being Automatically Created When The Code Contains Argparse?

Why is it not possible to use argparse and then when I do:
Task.init() I add:

auto_connect_arg_parser=False

and then I read the arguments to dict and use task.connect(arg_dict, name=my_custom_name)?

I tried doing that but it doesn't work when I clone a task from the UI (meaning it will not work in pipeline as well)

8 months ago
0 Hi All! Is There A Way To Rename The Default "Args" Name For Task Configuration That Is Being Automatically Created When The Code Contains Argparse?

Hi @<1523701070390366208:profile|CostlyOstrich36> , thanks for the response!
I want to implement the user arguments for the task using argparse, but I want to change the default "Args" name to a name that I will set

8 months ago
0 Hi All, I Have A Pipeline Construct From Multiple Base Tasks. Is There A Way To Get Output Or Notification Somehow From One Of The Steps In The Pipeline On The Fly? I Want To Know If I Can Trigger The A Child Step Based On Some "Go" Command That I Will Pu

@<1523701070390366208:profile|CostlyOstrich36>
Yes!
But, I want it to use the streaming output of the parent task to trigger start of the child task (it will be in the middle of the run, as opposed to regular pipeline where it launches the next task automatically after the parent task is done).

7 months ago
0 Hi Everyone! Small Question - Is It Possible To Associate An Agent To A Specific Cpu?

Thanks @<1576381444509405184:profile|ManiacalLizard2>
for now it seems to work just fine, as you said

9 months ago
0 Hi Everyone! Small Question - Is It Possible To Associate An Agent To A Specific Cpu?

and in general - how many agents can I open on a machine with 16 CPUs and no GPUs?

9 months ago
one year ago
0 Hi Everyone! I Have A Question Regarding Running A Script Inside Docker Container With Clearml: I Build An Image Containing All Requirements To Run Some Python Script That Is Getting Arguments Via Argparse. When I Build A Wrapper Script That Will Run This

@<1523701070390366208:profile|CostlyOstrich36>
You're right, I do use a custom entry point in my docker file.
So, can you please suggest if you think this would work:

  • Set an environment that will be able to run this task entirely (script will include Task.init).
  • Create a new image from which I will delete the customised run command (FYI that the Dockerfile does not contain clearml/clearml-agent installation)
  • Run the task from python script - will publish task to clearml UI
  • Clone task...
9 months ago
0 Hi Everyone! I Have A Question Regarding Running A Script Inside Docker Container With Clearml: I Build An Image Containing All Requirements To Run Some Python Script That Is Getting Arguments Via Argparse. When I Build A Wrapper Script That Will Run This

It's a bit of a problem to do this, as I'm using a subprocess to run a python script in the container, and the paths in my local differ from the one inside the container.

9 months ago