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
ElegantCoyote26
Moderator
34 Questions, 126 Answers
  Active since 10 January 2023
  Last activity 5 months ago

Reputation

0

Badges 1

125 × Eureka!
0 Votes
7 Answers
893 Views
0 Votes 7 Answers 893 Views
Any idea what could be going on here? [2023-01-09 16:18:15,727][root][INFO][utils_atom_fn.py:85] - Running fn: fn_get_heat_map_nan [2023-01-09 16:18:15,782][...
one year ago
0 Votes
6 Answers
856 Views
0 Votes 6 Answers 856 Views
is there a way to tell an experiment not to use caches? from the python API specifically. something like task.use_caches = False ? I don't want it to use any...
2 years ago
0 Votes
5 Answers
851 Views
0 Votes 5 Answers 851 Views
is there a way to copy the entire folder an agent in a machine (different from server machine) builds to the server machine?
3 years ago
0 Votes
1 Answers
882 Views
0 Votes 1 Answers 882 Views
Is it possible to restrict an agent's cpu usage? like limit the number of cores it can use?
3 years ago
0 Votes
3 Answers
1K Views
0 Votes 3 Answers 1K Views
how can i disable agent pip caching? sometimes the agents load an earlier version of one of my libraries. i'm running them in docker mode
2 years ago
0 Votes
3 Answers
996 Views
0 Votes 3 Answers 996 Views
One question.. If I had a Docker image in the Docker registry that had all the requirements of a task already installed, would that let the clearml-agents sk...
one year ago
0 Votes
14 Answers
915 Views
0 Votes 14 Answers 915 Views
3 years ago
0 Votes
2 Answers
848 Views
0 Votes 2 Answers 848 Views
are the ClearML server AWS AMIs a paid only feature?
one year ago
0 Votes
3 Answers
857 Views
0 Votes 3 Answers 857 Views
What does it mean to publish a model or a dataset?
3 years ago
0 Votes
30 Answers
960 Views
0 Votes 30 Answers 960 Views
what could be causing this?
2 years ago
0 Votes
4 Answers
926 Views
0 Votes 4 Answers 926 Views
I've been seeing this message and similar messages a lot in some of my tasks lately... any ideas? 2022-08-05 16:09:55,492 - clearml.Metrics - ERROR - Action ...
2 years ago
0 Votes
13 Answers
895 Views
0 Votes 13 Answers 895 Views
is there a way to limit the number of jobs/tasks that can run concurrently on the services queues?
2 years ago
0 Votes
2 Answers
812 Views
0 Votes 2 Answers 812 Views
is there any clearml-serving api documentation?
2 years ago
0 Votes
1 Answers
773 Views
0 Votes 1 Answers 773 Views
Is there a way to deploy a ClearML server with a preconfigured user + its credentials?
one year ago
0 Votes
8 Answers
874 Views
0 Votes 8 Answers 874 Views
what is the python version an agent runs a task with? the one the agent was launched with, or the task? i.e. if Iaunch an agent with python 3.8.5, but a task...
3 years ago
0 Votes
0 Answers
793 Views
0 Votes 0 Answers 793 Views
clearly the link is 404
2 years ago
0 Votes
15 Answers
854 Views
0 Votes 15 Answers 854 Views
Hi, I'm trying to set up my trains-server and I'm getting the following: (base) emilio@unicorn:~$ docker-compose -f /opt/trains/docker-compose.yml up -d ERRO...
3 years ago
0 Votes
12 Answers
821 Views
0 Votes 12 Answers 821 Views
I think there is a little bug with the PipelineDecorator.component : i provide the name of the component but it uses the name of the wrapped function as the ...
2 years ago
0 Votes
2 Answers
812 Views
0 Votes 2 Answers 812 Views
what is the series parameter of the Logger class functions for?
3 years ago
0 Votes
13 Answers
821 Views
0 Votes 13 Answers 821 Views
I have a little bit of code that goes like: import argparse from clearml import Task from DeployKit.argument_parser import get_parser import KitUtils if __na...
3 years ago
0 Votes
5 Answers
848 Views
0 Votes 5 Answers 848 Views
does clearml-serving somehow cache the preprocess and postprocess functions? like after I call the endpoint once, it won't "rerun" the instructions in these ...
one year ago
0 Votes
4 Answers
919 Views
0 Votes 4 Answers 919 Views
quick question about the cleanup service: one argument is cleanup_period_in_days , another is run_as_service . If the latter is false, it should only run onc...
3 years ago
0 Votes
8 Answers
819 Views
0 Votes 8 Answers 819 Views
is it possible to add extra arguments to pip install for a docker agent? somewhere in clearml.conf or maybe some docker arguments? I'm trying to add a truste...
2 years ago
0 Votes
5 Answers
930 Views
0 Votes 5 Answers 930 Views
I'm having some trouble setting up my trains-server configuration for trains. After copying the credentials I get the following: (tft) --:~$ trains-init TRAI...
3 years ago
0 Votes
5 Answers
945 Views
0 Votes 5 Answers 945 Views
2 years ago
0 Votes
3 Answers
1K Views
0 Votes 3 Answers 1K Views
Hi there, are there any plans to add better documentation/examples to clearml-serving ? I have my serving working with version 0.9.0, but I can't see any doc...
2 years ago
0 Votes
7 Answers
843 Views
0 Votes 7 Answers 843 Views
How do I disable completely any kind of python env caching by the agents? I tried having venvs_cache: { # maximum number of cached venvs max_entries: 10 # mi...
one year ago
0 Votes
5 Answers
830 Views
0 Votes 5 Answers 830 Views
The
the Dataset method create seems to expect the parameter parent_datasets in the form of a list indicating the parent dataset task IDs, instead of the name. Th...
3 years ago
0 Votes
3 Answers
832 Views
0 Votes 3 Answers 832 Views
is it generally recommended to close API client sessions? Like if I open a client like this: from clearml.backend_api.session.client import APIClient client ...
2 years ago
0 Votes
18 Answers
1K Views
0 Votes 18 Answers 1K Views
Quick question, can trains log keras loss values and/or metrics automatically? Or would I have to attach a tensorboard callback?
3 years ago
Show more results questions
0 Has Anyone Used

i'm also not sure what this is
-H "Content-Type: application/octet-stream" -H' NV-InferRequest:batch_size: 1 input { name: "dense_input" dims: [-1, 784] } output { name: "activation_2" cls { count: 1 } }'

2 years ago
0 Is There A Way To Limit The Number Of Jobs/Tasks That Can Run Concurrently On The

I am tagging AgitatedDove14 since I sort of need an answer asap...!

2 years ago
0 Is There A Way To Tell An Experiment Not To Use Caches? From The Python Api Specifically. Something Like

Because sometimes it clones a cached version of a private repository, instead of cloning the requested version

2 years ago
0 Is There A Way To Get A Task'S Docker Container Id/Name? I'M Generally Interested In Resource Profiling Of Each Container, So I Noticed I Can Use

I see, ok!
I will try that out.
Another thing I noticed: none of my pipeline tasks are reporting these graphs, regardless of runtime. I guess this line would also fix that?

one year ago
0 How Can I Disable Agent Pip Caching? Sometimes The Agents Load An Earlier Version Of One Of My Libraries. I'M Running Them In Docker Mode

i'm not sure how to double check this is the case when it happens... usually we have all requirements specified with git repo

2 years ago
0 Does

Hi CostlyOstrich36
I added this instruction at the very end of my postprocess function
shutil.rmtree("~/.clearml")

one year ago
0 What Could Be Causing This?

i don't think the conf is an issue. it's been deployed for a long time and working. models from yesterday correctly display the url

2 years ago
one year ago
0 We'Re Getting Critical Alerts For Elasticsearch Container Around The Jdk Version. It'S Apparently End-Of-Life. Can You Look Into Upgrading The Image? It Looks Like You'Re Running Fixed Version (7.6.2) Instead Of Picking Up Either Latest Or Some Major/St

I understand! this is my sysadmin message:
"if nothing else, they could publish a new elasticsearch image of 7.6.2 (ex. 7.6.2-1) which uses a newer patched version of JDK (1.13.x but newer than 1.13.0_2)"

3 years ago
0 Any Idea What Could Be Going On Here?

this is the code that's giving me trouble 🤔

one year ago
0 Is There A Way To Limit The Number Of Jobs/Tasks That Can Run Concurrently On The

in particular, I ran the agent with clearml-agent daemon --queue test-concurrency --create-queue --services-mode 2 --docker "ubuntu:20.04" --detached and enqueued 4 tasks to it that sleep 15 minutes.
I can see all 4 tasks running, see

2 years ago
0 Any Idea What Could Be Going On Here?

logger.report_media( title=name_title, series="Nan", iteration=0, local_path=fig_nan, delete_after_upload=delete_after_upload, ) clearml_task.upload_artifact( name=name_title, artifact_object=fig_nan, wait_on_upload=True, )

one year ago
one year ago
0 Is There A Way To Tell An Experiment Not To Use Caches? From The Python Api Specifically. Something Like

` Using cached repository in "/root/.clearml/vcs-cache/DeployKit_cloud.git.3e6952dd2fa4054e353465fe2d40daa3/DeployKit_cloud.git"

fatal: Could not read from remote repository. `

2 years ago
0 Hi There, Are There Any Plans To Add Better Documentation/Examples To

I am curious about the updates on version 1.0.0, where can I see some info regarding this?
Passing state information from pre to postprocessing and the dynamic preprocessing code thing, for example

2 years ago
0 I'Ve Been Seeing This Message And Similar Messages A Lot In Some Of My Tasks Lately... Any Ideas?

Ok, going to ask the server admins, will keep you posted, thanks!

2 years ago
3 years ago
0 Is There A Way To Get A Task'S Docker Container Id/Name? I'M Generally Interested In Resource Profiling Of Each Container, So I Noticed I Can Use

um, this line is not doing anything for me 🤔
controller_clearml_task = Task.current_task() controller_clearml_task.set_resource_monitor_iteration_timeout( seconds_from_start=10 )

one year ago
0 Is There A Way To Limit The Number Of Jobs/Tasks That Can Run Concurrently On The

Right, I used --services-mode 2 and it still runs more than 2 tasks simultaneously

2 years ago
0 Quick Question, Can Trains Log Keras Loss Values And/Or Metrics Automatically? Or Would I Have To Attach A Tensorboard Callback?

Is this a possible future feature? I have used cometML before and they have this. I'm not sure how they do it though...

3 years ago
Show more results compactanswers