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
8 Answers
905 Views
0 Votes 8 Answers 905 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
820 Views
0 Votes 0 Answers 820 Views
clearly the link is 404
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
0 Votes
3 Answers
1K Views
0 Votes 3 Answers 1K 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
1 Answers
811 Views
0 Votes 1 Answers 811 Views
if I do task.create() how do I pass the output_uri=True thing to it? that task.init generally has?
2 years ago
0 Votes
7 Answers
921 Views
0 Votes 7 Answers 921 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
5 Answers
968 Views
0 Votes 5 Answers 968 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
1 Answers
800 Views
0 Votes 1 Answers 800 Views
Is there a way to deploy a ClearML server with a preconfigured user + its credentials?
one year ago
0 Votes
14 Answers
952 Views
0 Votes 14 Answers 952 Views
3 years ago
0 Votes
6 Answers
891 Views
0 Votes 6 Answers 891 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
8 Answers
850 Views
0 Votes 8 Answers 850 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
12 Answers
856 Views
0 Votes 12 Answers 856 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
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
30 Answers
994 Views
0 Votes 30 Answers 994 Views
what could be causing this?
2 years ago
0 Votes
5 Answers
879 Views
0 Votes 5 Answers 879 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 ...
2 years ago
0 Votes
5 Answers
979 Views
0 Votes 5 Answers 979 Views
2 years ago
0 Votes
7 Answers
879 Views
0 Votes 7 Answers 879 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
4 Answers
956 Views
0 Votes 4 Answers 956 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
14 Answers
866 Views
0 Votes 14 Answers 866 Views
Has anyone used clearml-serving and successfully sent an inference request via curl? I'm having trouble trying to send an inference request to the keras mnis...
2 years ago
0 Votes
11 Answers
1K Views
0 Votes 11 Answers 1K Views
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 docker stat...
one year ago
0 Votes
1 Answers
908 Views
0 Votes 1 Answers 908 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
2 Answers
876 Views
0 Votes 2 Answers 876 Views
are the ClearML server AWS AMIs a paid only feature?
one year 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
5 Answers
881 Views
0 Votes 5 Answers 881 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
3 Answers
862 Views
0 Votes 3 Answers 862 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
2 Answers
842 Views
0 Votes 2 Answers 842 Views
is there any clearml-serving api documentation?
2 years ago
0 Votes
2 Answers
846 Views
0 Votes 2 Answers 846 Views
what is the series parameter of the Logger class functions for?
3 years ago
0 Votes
4 Answers
961 Views
0 Votes 4 Answers 961 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
856 Views
0 Votes 13 Answers 856 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
13 Answers
931 Views
0 Votes 13 Answers 931 Views
is there a way to limit the number of jobs/tasks that can run concurrently on the services queues?
2 years ago
Show more results questions
0 Has Anyone Used

So far I have taken one mnist image, and done the following:

` from PIL import Image
import numpy as np

def preprocess(img, format, dtype, h, w, scaling):

sample_img = img.convert('L')


resized_img = sample_img.resize((1, w*h), Image.BILINEAR)
resized = np.array(resized_img)
resized = resized.astype(dtype)

return resized

png img file

img = Image.open('./7.png')

preprocessed img, FP32 formated numpy array

img = preprocess(img, format, "float32", 28, 28, None)

...

2 years ago
0 Does

where should I look for this folder?
I am talking about serving

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
0 Does

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

2 years ago
2 years ago
0 Does

{"detail":"Error processing request: [Errno 2] No such file or directory: '~/.clearml'"}

2 years ago
0 Hi, I'M Trying To Set Up My Trains-Server And I'M Getting The Following:

(base) emilio@unicorn:~$ docker version Client: Docker Engine - Community Version: 19.03.13 API version: 1.40 Go version: go1.13.15 Git commit: 4484c46d9d Built: Wed Sep 16 17:02:36 2020 OS/Arch: linux/amd64 Experimental: false (base) emilio@unicorn:~$ docker-compose --version docker-compose version 1.17.1, build unknown

3 years ago
0 Has Anyone Used

i'm just interested in actually running a prediction with the serving engine and all

2 years ago
2 years ago
0 The

well, what are the types of input expected? is parent_datasets a list of names or IDs?

3 years ago
0 Is There Any

some documentation for understanding the parameters, flags, options etc.
I want my serving controller to go into a particular project instead of the default DevOps, for example
Other things might be programatically adding endpoints instead of using cli (this is because I potentially have hundreds of models to serve so I can't do this manually)

2 years ago
0 I Think There Is A Little Bug With The

my server isn't the latest, though..

2 years ago
0 Is It Possible To Add Extra Arguments To

SuccessfulKoala55 I can't get it to work... I tried using the pip conf locally and it works, but the agent doesn't seem to be able to install the package

2 years ago
0 How Do I Disable

yep, setting it to -1 is still caching envs..

one year ago
0 Is It Generally Recommended To Close Api Client Sessions? Like If I Open A Client Like This:

can you elaborate a bit on the token side? i'm not sure exactly what would be a bad practice here

2 years ago
0 What Could Be Causing This?

it says method not allowed when i try to access that url

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
0 Quick Question, Can Trains Log Keras Loss Values And/Or Metrics Automatically? Or Would I Have To Attach A Tensorboard Callback?

Hey AgitatedDove14 , thanks for the answer. What does that mean? In any case I think it would be a nice to have feature.

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

Ah, so you're saying I can write a callback for stuff like train_loss , val_loss , etc.

3 years ago
Show more results compactanswers