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
ReassuredTiger98
Moderator
95 Questions, 639 Answers
  Active since 10 January 2023
  Last activity 8 months ago

Reputation

0

Badges 1

606 × Eureka!
0 Votes
1 Answers
948 Views
0 Votes 1 Answers 948 Views
3 years ago
0 Votes
4 Answers
984 Views
0 Votes 4 Answers 984 Views
Can someone confirm that agent.python_binary is not working? My agent always chooses the system installation /usr/bin/python3.8 which results in /usr/bin/pyt...
3 years ago
0 Votes
2 Answers
851 Views
0 Votes 2 Answers 851 Views
Hey guys 🙂 I am wondering what is the best way to make a clearml-server deployment robust? E.g. let's say my server may become unavailable because of a hard...
one year ago
0 Votes
31 Answers
21K Views
0 Votes 31 Answers 21K Views
I have a self-hosted clearm-server and and clearml-agent started with clearml-agent daemon --queue default --foreground I try to execute the following simple...
3 years ago
0 Votes
161 Answers
22K Views
0 Votes 161 Answers 22K Views
Hello! Since today I get AssertionError: Torch not compiled with CUDA enabled for PyTorch 1.8. Tasks that I submitted yesterday to the queue are also not wor...
3 years ago
Show more results questions
0 Hi Everyone, Is It Possible To Show The Upload Progress Of Artificats? E.G. I Use

Seems more like a bug or something is not properly configured on my side.

3 years ago
0 Is There Some

Thanks! 🙂

3 years ago
0 Is There A Reason Why All Clearml.Task Methods Regarding Requirements (E.G. Pip Requirements) Are Class Methods? Are Requirements Not Stored In A Task?

I think doing all that work is not worth it right now, I am just trying to understand why I clearml seems not to be designed something like this:

` task_name = args.task_name

task = Task()
task = task.load_statedict(await Task.load_or_create(task_name))

task.requirements.add(...)
await task.synchronize()

task.execute_remotely(queue_name, exit=True) `

3 years ago
0 Btw: There Seems To Be No Support For Videos In Tensorboard/Experiment View (E.G.

You mean I should have opencv/ffmpeg available on the clearml-server machine?

3 years ago
0 Is There A Reason Why All Clearml.Task Methods Regarding Requirements (E.G. Pip Requirements) Are Class Methods? Are Requirements Not Stored In A Task?

Both, actually. So what I personally would find intuitive is something like this:
` class Task:
def load_statedict(self, state_dict):
pass

async def synchronize(self):
    ...

async def task_execute_remotely(self):
    await self.synchronize()
    ...

def add_requirement(self, requirement):
    ...

@classmethod
async def init(task_name):
    task = Task()
    task.load_statedict(await Task.load_or_create(task_name))
    await tas...
3 years ago
0 I Have A Problem That Might Not Directly Be Clearml Related, But Maybe Someone Here Has An Idea: I Run A Clearml-Server On A Machine With 128Gb Ram, 32 Cores And 2 Gpus. On The Same Machine I Run 2 Clearml-Agent Each With Access To 1 Gpu, 12 Cores, An 48G

CostlyOstrich36 Actually no container exits, so I guess if it s because of OOM like SuccessfulKoala55 implies, than maybe a process inside the container gets killed and the container will hang? Is this possible?
SuccessfulKoala55 I did not observe elastic to use much RAM (at least right after starting). Doesn't this line in the docker-compose control the RAM usage?
ES_JAVA_OPTS: -Xms2g -Xmx2g -Dlog4j2.formatMsgNoLookups=true

2 years ago
0 I Have A Problem That Might Not Directly Be Clearml Related, But Maybe Someone Here Has An Idea: I Run A Clearml-Server On A Machine With 128Gb Ram, 32 Cores And 2 Gpus. On The Same Machine I Run 2 Clearml-Agent Each With Access To 1 Gpu, 12 Cores, An 48G

SuccessfulKoala55 I just had the issue again. The logs show nothing of interest. It looks like OOM to me, but I will test this again with way larger SWAP, so the server only slows down, but does not kill something. Unfortunately, kernel logs also do not show much (maybe I have my server logs misconfigured, I am no expert).
What is interesting though is that docker only showed my nginx, minio and docker-registry to have exited, while all the clearml containers were still running. I restarted ...

2 years ago
0 Hello Everyone, Quick Question: How Can I Specify That I Want To Run My Task With

Thank you very much, didnt know about that 🙂

2 years ago
0 I Found The Following Config Parameter (Related To Clearml-Data I Guess?):

Yea, is there a guarantee that the clearml-agent will not crash because it did not clean the cache in time?

3 years ago
0 Can Someone Point Me Whether/How The Services-Agent The Starts With The Clearml-Server Mounts The

Ah, perfect. Did not know this. Will try! Thanks again! 🙂

3 years ago
0 Hi Everyone, I Have A Quick Question: When I Use

I can put anything there: s3://my_minio_instance:9000 /bucket_that_does_not_exist and it will work.

2 years ago
0 I Have A Questions About Queue Priorities With Clearml-Agent. I Have Two Queues,

To summarize: The scheduler should assign tasks the the agent first, which gives a queue the highest priority.

3 years ago
0 What Does

Ok, nice. Makes sense!

3 years ago
0 It Seems Like Clearml Agent Does Not Support Arparse Subparsers, Right?

What I get for args when I print it locally is not the same as what ClearML extracts from args .

3 years ago
0 I Have A Questions About Queue Priorities With Clearml-Agent. I Have Two Queues,

Then if the first agent is assigned a task of queue B if the next task is of type A it will have to wait, even though in theory there is capacity for it, if the first task had be executed on the second agent initially.

3 years ago
0 Another Question: How Can I Make Clearml-Agent Use Pre-Installed Version From The Nvidia/Pytorch (

btw: I am pretty sure this used to work, but then stopped work some time ago.

2 years ago
0 Hi Everyone, I Have A Quick Question: When I Use

Just if I leave it empty, it will not work.

2 years ago
0 Can Someone Point Me Whether/How The Services-Agent The Starts With The Clearml-Server Mounts The

It is not explained there, but do you mean
CLEARML_API_ACCESS_KEY: ${CLEARML_API_ACCESS_KEY:-} CLEARML_API_SECRET_KEY: ${CLEARML_API_SECRET_KEY:-}?

3 years ago
0 Can Someone Point Me Whether/How The Services-Agent The Starts With The Clearml-Server Mounts The

However, to use conda as package manager I need a docker image that provides conda.

3 years ago
0 Is There A Reason

It didn't revert. Just one of my colleagues that I wanted to introduce to clearml put his clearml.conf in the wrong directory and pushed his experiments to the public server.
So I do not blame clearml for this mistake, but generally designing the system to be fail-safe is better than hope that everything is used like it has been designed 🙂

3 years ago
Show more results compactanswers