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
ImmensePenguin78
Moderator
14 Questions, 51 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0

Badges 1

45 × Eureka!
0 Votes
5 Answers
658 Views
0 Votes 5 Answers 658 Views
Hi, I do the following: Task.get_current_logger.report_Text("blabla",level=logging.CRITICAL)And query said log with client = APIClient() result = client.even...
3 years ago
0 Votes
1 Answers
679 Views
0 Votes 1 Answers 679 Views
Hi I get the following error repeatedly - any idea what may cause this? Retrying (Retry(total=233, connect=233, read=240, redirect=240, status=240)) after co...
3 years ago
0 Votes
2 Answers
713 Views
0 Votes 2 Answers 713 Views
Hi, how can I get programmatically a Task's logged stderr stream?
3 years ago
0 Votes
4 Answers
711 Views
0 Votes 4 Answers 711 Views
Hi, how can I download / access artifacts that were uploaded with Task. upload_artifact ? I mean access via code and not via ClearML UI. I am aware that I ca...
3 years ago
0 Votes
9 Answers
693 Views
0 Votes 9 Answers 693 Views
Hi, when running a clearml agent with services mode, is there a way to limit the number of concurrent services crunning?
2 years ago
0 Votes
9 Answers
713 Views
0 Votes 9 Answers 713 Views
Another question, how can I close a Task with a specified status? I know I am able to do task.close() but this doesn't let me control the task's status and I...
3 years ago
0 Votes
15 Answers
680 Views
0 Votes 15 Answers 680 Views
Hi, I have a task that's running on a docker container. Now - There are a bunch of other docker containers (namely, Nvidia's TF 21.1 to 21.10) for which I wa...
2 years ago
0 Votes
4 Answers
687 Views
0 Votes 4 Answers 687 Views
2 years ago
0 Votes
0 Answers
839 Views
0 Votes 0 Answers 839 Views
3 years ago
0 Votes
8 Answers
858 Views
0 Votes 8 Answers 858 Views
Hi, Seems that when I upload a string as artifact ( task.upload_artifact(s) where s is a string) that contains newline delimiters ( \n ), these are not parse...
3 years ago
0 Votes
11 Answers
697 Views
0 Votes 11 Answers 697 Views
Hi, how can I query on plots and log added for a specific task programmatically? (as in, besides the ClearML UI and asumming I have its Task ID)
3 years ago
0 Votes
1 Answers
677 Views
0 Votes 1 Answers 677 Views
Quick question - if I use sub-project functionality and there are different root project names but identical sub-project names, is that an issue?
3 years ago
0 Votes
10 Answers
786 Views
0 Votes 10 Answers 786 Views
2 years ago
0 Votes
2 Answers
806 Views
0 Votes 2 Answers 806 Views
Hi, is it possible to apply AND logic in Task.get_tasks? For example, in the below example tags is a list of tags and I want to only fetch tasks that has all...
3 years ago
0 Hi, How Can I Query On Plots And Log Added For A Specific Task Programmatically? (As In, Besides The Clearml Ui And Asumming I Have Its Task Id)

It should be possible somehow, as they are attached to the Task and displayed in the Task's results tab

3 years ago
0 Hi, I Have A Task That'S Running On A Docker Container. Now - There Are A Bunch Of Other Docker Containers (Namely, Nvidia'S Tf 21.1 To 21.10) For Which I Want To Run The Task. How Can I Do This Using Agents / Remote Execution? Thanks

SuccessfulKoala55 , meanwhile I try that, I encounter something weird. I am using a clearml agent with the following
clearml-agent daemon --detached --docker --gpus 0,1,2,3 --dynamic-gpus --queue kenny_1_gpu_queue=1
But for some reason although all the gpus are free and no other agent is on the machine, only one task is executed at the time instead of 4. Why is that?

2 years ago
0 Hi, I Have A Task That'S Running On A Docker Container. Now - There Are A Bunch Of Other Docker Containers (Namely, Nvidia'S Tf 21.1 To 21.10) For Which I Want To Run The Task. How Can I Do This Using Agents / Remote Execution? Thanks

SuccessfulKoala55
Well, I've removed the requirement altogether and now it won't fail on this anymore (TF is provided anyway AFAIK via the image) but now I get the following:

Any ideas?

*Needless to say, when running locally this works with no problem. Also the http://nvcr.io/nvidia/tensorflow:21.02-tf2-py3 image is able to run TRT

2 years ago
0 Hi, I Have A Task That'S Running On A Docker Container. Now - There Are A Bunch Of Other Docker Containers (Namely, Nvidia'S Tf 21.1 To 21.10) For Which I Want To Run The Task. How Can I Do This Using Agents / Remote Execution? Thanks

I am also running from a NVIDIA container and I get
ERROR: No matching distribution found for tensorflow==2.4.0+nv
clearml_agent: ERROR: Could not install task requirements!

docker image is
http://nvcr.io/nvidia/tensorflow:21.10-tf2-py3
What should I do?

2 years ago
0 Hi, Seems That When I Upload A String As Artifact (

I'll open a relevant issue in Git.

3 years ago
0 Hi, I Have A Task That'S Running On A Docker Container. Now - There Are A Bunch Of Other Docker Containers (Namely, Nvidia'S Tf 21.1 To 21.10) For Which I Want To Run The Task. How Can I Do This Using Agents / Remote Execution? Thanks

Well, on the first task it grabs it opens a different WORKER:gpu0 worker entry as expected while the agent stays with WORKER:dgpu0,1,2,3
but the other tasks on queue won't start and upon the first task's completion the following are not being run on WORKER:gpu0 but on WORKER:dgpu0,1,2,3 instead using only 1 GPU (the task execution says it runs on WORKER:gpu0)

2 years ago
0 Hi, How Can I Query On Plots And Log Added For A Specific Task Programmatically? (As In, Besides The Clearml Ui And Asumming I Have Its Task Id)

Thanks. But I am not talking about scalars. I am talking about plots I've reported to ClearML using .report_histogram or .report_scatter2d or .report_table

3 years ago
0 Hi, I Have A Task That'S Running On A Docker Container. Now - There Are A Bunch Of Other Docker Containers (Namely, Nvidia'S Tf 21.1 To 21.10) For Which I Want To Run The Task. How Can I Do This Using Agents / Remote Execution? Thanks

SuccessfulKoala55 On another note, I'm also getting
ERROR: Could not find a version that satisfies the requirement pandas==1.3.4 (from versions: 0.1, 0.2, 0.3.0, 0.4.0, 0.4.1, 0.4.2, 0.4.3, 0.5.0, 0.6.0, 0.6.1, 0.7.0, 0.7.1, 0.7.2, 0.7.3, 0.8.0, 0.8.1, 0.9.0, 0.9.1, 0.10.0, 0.10.1, 0.11.0, 0.12.0, 0.13.0, 0.13.1, 0.14.0, 0.14.1, 0.15.0, 0.15.1, 0.15.2, 0.16.0, 0.16.1, 0.16.2, 0.17.0, 0.17.1, 0.18.0, 0.18.1, 0.19.0, 0.19.1, 0.19.2, 0.20.0, 0.20.1, 0.20.2, 0.20.3, 0.21.0, 0.21.1, 0.22.0, 0.23....

2 years ago
Show more results compactanswers