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
RobustFox47
Moderator
22 Questions, 94 Answers
  Active since 10 January 2023
  Last activity 7 months ago

Reputation

0

Badges 1

89 × Eureka!
0 Votes
1 Answers
231 Views
0 Votes 1 Answers 231 Views
Hi guys, I'm loving ClearML so far now we can quickly train and deploy customer models 🚀 however, when prototyping models in a .py file it's quite annoying ...
2 years ago
0 Votes
13 Answers
229 Views
0 Votes 13 Answers 229 Views
Hi guys, I think there's something wrong on https://app.clear.ml . The font etc is changing to caps and . 's are being introduced into the path of project fo...
one year ago
0 Votes
4 Answers
242 Views
0 Votes 4 Answers 242 Views
Another thing that would be useful is to enable git clone via github personal access token as ssh config can be annoying when working in containerised env fo...
2 years ago
0 Votes
11 Answers
200 Views
0 Votes 11 Answers 200 Views
one year ago
0 Votes
20 Answers
205 Views
0 Votes 20 Answers 205 Views
How can I call the runtime of a experiment running on the clearml agent?
one year ago
0 Votes
7 Answers
271 Views
0 Votes 7 Answers 271 Views
Hi guys, I want automate the clearml-init in a docker container. Ideally I would do this by having the clearml.conf file in the container and then read in en...
aws
2 years ago
0 Votes
7 Answers
208 Views
0 Votes 7 Answers 208 Views
Hi guys 🙂 hope you're having a good weekend. When I try and compare experiments on the Web UI the display just freezes. It would be great if you could give ...
2 years ago
0 Votes
18 Answers
263 Views
0 Votes 18 Answers 263 Views
Hey, Just trying out clearml-serving and getting the following error the provided PTX was compiled with an unsupported toolchain in the clearml-serving-trito...
one year ago
0 Votes
2 Answers
237 Views
0 Votes 2 Answers 237 Views
Hey, Are you thinking of getting ISO27001 or SOC2 at some point / do you already have it?
one year ago
0 Votes
6 Answers
244 Views
0 Votes 6 Answers 244 Views
Hey guys, hope you're having a good week 🙂 How can i get the status of a task in the queue? status = Task.enqueue( cloned, queue_name='default', ) #now get ...
2 years ago
0 Votes
3 Answers
208 Views
0 Votes 3 Answers 208 Views
Happy Friday Everyone 🙂 how can I apply uncommitted changes from a task manually to debug locally?
one year ago
0 Votes
4 Answers
274 Views
0 Votes 4 Answers 274 Views
Hey how can I trigger multiple "Hyperparameter Optimization" in a for loop to run on a service? I have around 30 models I'd like to run a BO on in a service ...
8 months ago
0 Votes
7 Answers
212 Views
0 Votes 7 Answers 212 Views
Can I prevent torch.save()from automatically uploading the model and use task.update_output_model(model_path=best_model_path)at the end to upload the best mo...
one year ago
0 Votes
4 Answers
247 Views
0 Votes 4 Answers 247 Views
Are GP3 volumes automatically deleted when the instance is spun down using the clearml aws autoscaler?
aws
one year ago
0 Votes
7 Answers
221 Views
0 Votes 7 Answers 221 Views
one year ago
0 Votes
4 Answers
235 Views
0 Votes 4 Answers 235 Views
one year ago
0 Votes
2 Answers
211 Views
0 Votes 2 Answers 211 Views
Hey, how can I download report_table objects back into python as a dataframe? I'm sure I've done this before but have no idea how I did it.
one year ago
0 Votes
6 Answers
226 Views
0 Votes 6 Answers 226 Views
I've just tried uploading a few datasets and they are not being detected on the UI.
one year ago
0 Votes
3 Answers
213 Views
0 Votes 3 Answers 213 Views
any plans for log space for hyperparameter support (log argument)? this is supported config space https://github.com/automl/ConfigSpace/blob/772665a86bca0d5b...
2 years ago
0 Votes
12 Answers
227 Views
0 Votes 12 Answers 227 Views
Hi everyone, I think it would be nice if startup_bash_script that takes in bash_script for the AWS autoscalers can be completely overwritten to input custom ...
one year ago
0 Votes
22 Answers
305 Views
0 Votes 22 Answers 305 Views
Hi guys for the AWS auto-scaler I need to access aws ssm or create .env file locally when using the init script. Has anyone done this?
aws
one year ago
0 Votes
0 Answers
191 Views
0 Votes 0 Answers 191 Views
Loving the new website & design 😍 😍 😍 😍 😍 congratulations 🚀
one year ago
0 Hi Guys

Hi SuccessfulKoala55 I gave up after 20 mins and also got a notification from firefox "This page is slowing down Firefox. The speed up your browser, stop this page". I'm heading out soon so I could leave it on. Also, had the same behaviour in chrome.

2 years ago
0 Has Anybody Used

` # dataset_class.py
from PIL import Image
from torch.utils.data import Dataset as BaseDataset

class Dataset(BaseDataset):

def __init__(
    self,
    images_fps,
    masks_fps,
    augmentation=None,
):
    self.augmentation = augmentation
    self.images_fps = images_fps
    self.masks_fps = masks_fps
    self.ids = len(images_fps)


def __getitem__(self, i):

    # read data
    img = Image.open(self.images_fps[i])
    mask = Image...
one year ago
0 Has Anybody Used

we normally do something like that - not sure what why it's freezing for you without more info

one year ago
0 I'Ve Just Tried Uploading A Few Datasets And They Are Not Being Detected On The Ui.

Can you try to go into 'Settings' -> 'Configuration' and verify that you have 'Show Hidden Projects' enabled

one year ago
0 How Can I Call The

Going for something like this:
` >>> queue = QueueMetrics(queue='queueid')

queue.avg_waiting_times `

one year ago
0 How Can I Call The

Usually that is shown here... for some reason it's not showing

one year ago
0 How Can I Call The

next one I'm looking for is average queue time

one year ago
0 Hi Guys

When I get home I'll get the stats to you 👍 thank you :)

2 years ago
0 Hi Guys For The Aws Auto-Scaler I Need To Access Aws Ssm Or Create .Env File Locally When Using The Init Script. Has Anyone Done This?

echo -e $(aws ssm --region=eu-west-2 get-parameter --name 'my-param' --with-decryption --query "Parameter.Value") | tr -d '"' > .env set -a source .env set +a git clone https://${PAT}@github.com/myrepo/toolbox.git mv .env toolbox/ cd toolbox/ docker-compose up -d --build docker exec -it $(docker-compose ps -q) clearml-agent daemon --detached --gpus 0 --queue default

one year ago
0 Hi Guys For The Aws Auto-Scaler I Need To Access Aws Ssm Or Create .Env File Locally When Using The Init Script. Has Anyone Done This?

When I run in the UI I get the following response
Error: Can not start new instance, An error occurred (InvalidParameterValue) when calling the RunInstances operation: Invalid availability zone: [eu-west-2]When I run programatically it just stalls and I don't get any read out

one year ago
0 Hi Everyone, We Train Our Ml Models Using The Aws Autoscaler On G4Dn Instances. We Currently Have A 24 Vcpu Limit For G Type Instances In Eu-West. I'M Trying To Get This Limit At Least Doubled Or Tripled. My Request Keeps Stagnating With The Service Team

This was the response from AWS:

"Thank you for for sharing the requested details with us. As we discussed, I'd like to share that our internal service team is currently unable to support any G type vCPU increase request for limit increase. 

The issue is we are currently facing capacity scarcity to accommodate P and G instances. Our engineers are working towards fixing this issue. However, until then, we are unable to expand the capacity and process limit increase."

one year ago
0 Can I Prevent

oh okay

one year ago
0 Can I Prevent

it would be useful to have some control over this if possible 🙂

one year ago
0 Hey, Just Trying Out Clearml-Serving And Getting The Following Error

Okay just for clarity...

Originally, my Nvidia drivers were running on an incompatible version for the triton server
This container was built for NVIDIA Driver Release 510.39 or later, but version 470.103.01 was detected and compatibility mode is UNAVAILABLE.
To fix this issue I updated the drivers on my base OS i.e.
sudo apt install nvidia-driver-510 -y sudo reboot
Then it worked. The docker-compose logs from clearml-serving-triton container did not make this clear (i.e. by r...

one year ago
0 Hey, Just Trying Out Clearml-Serving And Getting The Following Error

It might only be a req for the docker/docker-compose-triton-gpu.yml file but I'd need to check

one year ago
0 Hey, Just Trying Out Clearml-Serving And Getting The Following Error

$ curl -X 'POST' ' ' -H 'accept: application/json' -H 'Content-Type: application/json' -d '{ "url": " " }' {"digit":5}

one year ago
0 Hey, Just Trying Out Clearml-Serving And Getting The Following Error

I'll add a more detailed response once it's working

one year ago
0 Hey, Just Trying Out Clearml-Serving And Getting The Following Error

I can raise this as an issue on the repo if that is useful?

one year ago
0 How Can I Call The

ahhh okay thank you 🙂

one year ago
0 Hey, Just Trying Out Clearml-Serving And Getting The Following Error

Still debugging.... That fixed the issue with the
nvcr.io/nvidia/tritonserver:22.02-py3 container which now returns
` =============================
== Triton Inference Server ==

NVIDIA Release 22.02 (build 32400308)

Copyright (c) 2018-2021, NVIDIA CORPORATION & AFFILIATES. All rights reserved.

Various files include modifications (c) NVIDIA CORPORATION. All rights reserved.

This container image and its contents are governed by the NVIDIA Deep Learning Co...

one year ago
Show more results compactanswers