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
UpsetTurkey67
Moderator
20 Questions, 78 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0

Badges 1

75 × Eureka!
0 Votes
2 Answers
2K Views
0 Votes 2 Answers 2K Views
3 years ago
0 Votes
2 Answers
2K Views
0 Votes 2 Answers 2K Views
what is the difference between connect_configuration and set_configuration ? (similarly connect vs set_parameter )
3 years ago
0 Votes
2 Answers
1K Views
0 Votes 2 Answers 1K Views
3 years ago
0 Votes
0 Answers
2K Views
0 Votes 0 Answers 2K Views
probably because of symlinks, which are present in the repo, do you have any suggestion on how to handle the symlinks?
3 years ago
0 Votes
10 Answers
2K Views
0 Votes 10 Answers 2K Views
is clearml able to intercept (automatically) metrics gathered via torchmetrics.MetricTracker ?
2 years ago
0 Votes
2 Answers
2K Views
0 Votes 2 Answers 2K Views
Can you please point me to documentation of cron jobs in clearml?
3 years ago
0 Votes
4 Answers
2K Views
0 Votes 4 Answers 2K Views
is there a slack integration with clearml so that after failed experimetns one can get notificatios? (I am on the pro plan)
3 years ago
0 Votes
7 Answers
2K Views
0 Votes 7 Answers 2K Views
I am using pipelines (just starting) and I am checking different options for overriding parts of configuration of the base task (step of my pipeline). In the...
3 years ago
0 Votes
2 Answers
2K Views
0 Votes 2 Answers 2K Views
I have a question about clearml-data , from what I observed (I just started playing with it) it internally stores a compressed representation of a dataset. D...
3 years ago
0 Votes
5 Answers
2K Views
0 Votes 5 Answers 2K Views
I have noticed that for some people the repository discovery stores github repo in the form: https://github.com/ ... while for others git@github.com:... Inte...
3 years ago
0 Votes
1 Answers
2K Views
0 Votes 1 Answers 2K Views
another question, can I start a clearml-agent inside a docker container (part of a pod on a k8s-cluster), and this agent would then pull tasks from a queue, ...
3 years ago
0 Votes
5 Answers
2K Views
0 Votes 5 Answers 2K Views
I am creating clearml tasks using clearml.Task.init, for some reason clearml started reusing (and overwriting) old tasks, previously it did not do so. ClearM...
2 years ago
0 Votes
4 Answers
2K Views
0 Votes 4 Answers 2K Views
3 years ago
0 Votes
5 Answers
2K Views
0 Votes 5 Answers 2K Views
In my requirement.txt file I have modules installed from the same repository, i.e., I have lines such as: -e ../../nomagiclib/algorithmsTask.add_requirements...
3 years ago
0 Votes
0 Answers
2K Views
0 Votes 0 Answers 2K Views
probably there is a dangling symlink in the repo I am using
3 years ago
0 Votes
30 Answers
2K Views
0 Votes 30 Answers 2K Views
If I create a task using Task.create and then in a separate piece of code I want to report to it (by using Task.get_task(task_id) ), can I still use the auto...
3 years ago
0 Votes
7 Answers
2K Views
0 Votes 7 Answers 2K Views
I have a problem with clearml-agent, the agent is cloning repository, but when executing this command: shutil.copytree(Text(cached_repo_path), Text(clone_fol...
3 years ago
0 Votes
5 Answers
2K Views
0 Votes 5 Answers 2K Views
I wanted to ask about K8s + clearml-agent integration. Details in the thread.
3 years ago
0 Votes
14 Answers
2K Views
0 Votes 14 Answers 2K Views
can I get in Python the name of the person who created a given task by calling some method of a task?
3 years ago
0 Votes
20 Answers
2K Views
0 Votes 20 Answers 2K Views
2 years ago
3 years ago
3 years ago
0 I Have Noticed That For Some People The Repository Discovery Stores Github Repo In The Form:

ok, I solved the problem,
agent.force_git_ssh_protocol = truedid the trick

3 years ago
0 If I Create A Task Using Task.Create And Then In A Separate Piece Of Code I Want To Report To It (By Using

console output:
ClearML results page: 01b77a220869442d80af42efce82c617 some text 2022-03-21 22:47:16,660 - clearml.Task - INFO - Waiting to finish uploads 2022-03-21 22:47:28,217 - clearml.Task - INFO - Finished uploading

3 years ago
0 Can I Get In Python The Name Of The Person Who Created A Given Task By Calling Some Method Of A Task?

thanks! is this documented? (I am wondering whether I could have avoided bothering you with my question in the first place)

3 years ago
3 years ago
2 years ago
0 Is Clearml Able To Intercept (Automatically) Metrics Gathered Via

they are universal, I thought there is some interface to them in clearml, but probably not

2 years ago
3 years ago
0 I Wanted To Ask About K8S + Clearml-Agent Integration. Details In The Thread.

Is there a place where I can find details about this approach?

3 years ago
0 If I Create A Task Using Task.Create And Then In A Separate Piece Of Code I Want To Report To It (By Using

the situation is:
I can report a scalar by calling clearml_task.logger.report_scalar and it becomes immediately visible in the web ui

3 years ago
0 I Am Using Pipelines (Just Starting) And I Am Checking Different Options For Overriding Parts Of Configuration Of The Base Task (Step Of My Pipeline). In The Docs For Parameter_Override One Can Find:

I did something similar to what you suggests and it worked, the key insight was that connect and connect_configuration work differently in terms of overrides, thanks!

3 years ago
0 I Wanted To Ask About K8S + Clearml-Agent Integration. Details In The Thread.

From the documentation https://github.com/allegroai/clearml-agent :
` Two K8s integration flavours

Spin ClearML-Agent as a long-lasting service pod
use clearml-agent docker image
map docker socket into the pod (soon replaced by podman)
allow the clearml-agent to manage sibling dockers
benefits: full use of the ClearML scheduling, no need to worry about wrong container images / lost pods etc.
downside: Sibling containers `

3 years ago
3 years ago
0 I Created Credentials From My Account, Stored Them As A K8S Secret And They Are Reused Whenever Anyone From Our Ml Team Starts A New Ml Model Training, Which Causes All The Tasks To Have Me As The Author In The Dashboard. Can The User Be Overwritten Durin

We have a training template that is a k8s job definition (yaml) that creates env variables inside the docker images that is used for tranining, and those env variables are credentials for ClearML. Since they are taken from k8s secrets, they are the same for every user.

I can create secrets for every new user and set env variables accordingly, but perhaps you see a better way out?

3 years ago
0 I Am Using Pipelines (Just Starting) And I Am Checking Different Options For Overriding Parts Of Configuration Of The Base Task (Step Of My Pipeline). In The Docs For Parameter_Override One Can Find:

ok, I will do a simple workaround for this (use an additional parameter that I can update using parameter_override and then check if it exists and update the configuration in python myself)

3 years ago
Show more results compactanswers