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 19 days ago

Reputation

0

Badges 1

75 × Eureka!
0 Votes
0 Answers
555 Views
0 Votes 0 Answers 555 Views
probably there is a dangling symlink in the repo I am using
one year ago
0 Votes
1 Answers
654 Views
0 Votes 1 Answers 654 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, ...
one year ago
0 Votes
2 Answers
610 Views
0 Votes 2 Answers 610 Views
what is the difference between connect_configuration and set_configuration ? (similarly connect vs set_parameter )
2 years ago
0 Votes
2 Answers
560 Views
0 Votes 2 Answers 560 Views
one year ago
0 Votes
30 Answers
592 Views
0 Votes 30 Answers 592 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...
2 years ago
0 Votes
4 Answers
584 Views
0 Votes 4 Answers 584 Views
is there a slack integration with clearml so that after failed experimetns one can get notificatios? (I am on the pro plan)
2 years ago
0 Votes
14 Answers
623 Views
0 Votes 14 Answers 623 Views
can I get in Python the name of the person who created a given task by calling some method of a task?
2 years ago
0 Votes
10 Answers
546 Views
0 Votes 10 Answers 546 Views
is clearml able to intercept (automatically) metrics gathered via torchmetrics.MetricTracker ?
one year ago
0 Votes
20 Answers
566 Views
0 Votes 20 Answers 566 Views
12 months ago
0 Votes
5 Answers
589 Views
0 Votes 5 Answers 589 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...
one year ago
0 Votes
4 Answers
559 Views
0 Votes 4 Answers 559 Views
2 years ago
0 Votes
2 Answers
667 Views
0 Votes 2 Answers 667 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...
2 years ago
0 Votes
5 Answers
523 Views
0 Votes 5 Answers 523 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...
11 months ago
0 Votes
5 Answers
650 Views
0 Votes 5 Answers 650 Views
I wanted to ask about K8s + clearml-agent integration. Details in the thread.
one year ago
0 Votes
0 Answers
570 Views
0 Votes 0 Answers 570 Views
probably because of symlinks, which are present in the repo, do you have any suggestion on how to handle the symlinks?
one year ago
0 Votes
2 Answers
595 Views
0 Votes 2 Answers 595 Views
Can you please point me to documentation of cron jobs in clearml?
one year ago
0 Votes
2 Answers
32 Views
0 Votes 2 Answers 32 Views
2 years ago
0 Votes
7 Answers
664 Views
0 Votes 7 Answers 664 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...
one year ago
0 Votes
7 Answers
709 Views
0 Votes 7 Answers 709 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...
one year ago
0 Votes
5 Answers
719 Views
0 Votes 5 Answers 719 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...
one year 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)

one year 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!

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

one year ago
one year 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

but seriously, I am very thankful you were willing to spend so much time helping me, I am super impressed by your response time and helpfulness!

2 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

but perhaps it is worth adding to the docs page a hint to avoid using the CLEARML_TASK_ID env variable, perhaps I am not the only one to ever try it

2 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

2 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

Just to let you know, it now works (obviously) in the k8s setting as well.

2 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

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

my code snippet
` from clearml import Task
import os

clearml_task_id = os.environ['CLEARML_TASK_ID']
Task.debug_simulate_remote_task(clearml_task_id)
clearml_task = Task.init(auto_connect_arg_parser=False, auto_resource_monitoring=False)
print(clearml_task.id)
clearml_task.logger.report_scalar(series='s', value='123', iteration=2, title='title')
clearml_task.logger.report_text("some text") `

2 years ago
2 years ago
2 years ago
0 Hi, Is There A Way To Get The Quota Used By Each Task? My "Metrics" Quota Is Filling Up Very Quickly And I Would Like To Understand What'S Causing It.

I subscribe to the problem of having large metrics without a tool for proper inspection what is it coming from.

11 months ago
0 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.

I circumvented the problem by putting timestamp in task name, but I don't think this is necessary.

11 months ago
Show more results compactanswers