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

Reputation

0

Badges 1

89 × Eureka!
0 Votes
7 Answers
590 Views
0 Votes 7 Answers 590 Views
2 years ago
0 Votes
11 Answers
565 Views
0 Votes 11 Answers 565 Views
2 years ago
0 Votes
3 Answers
596 Views
0 Votes 3 Answers 596 Views
Happy Friday Everyone 🙂 how can I apply uncommitted changes from a task manually to debug locally?
2 years ago
0 Votes
7 Answers
707 Views
0 Votes 7 Answers 707 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
4 Answers
734 Views
0 Votes 4 Answers 734 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 ...
one year ago
0 Votes
8 Answers
584 Views
0 Votes 8 Answers 584 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
3 Answers
619 Views
0 Votes 3 Answers 619 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
0 Answers
570 Views
0 Votes 0 Answers 570 Views
Loving the new website & design 😍 😍 😍 😍 😍 congratulations 🚀
2 years ago
0 Votes
2 Answers
611 Views
0 Votes 2 Answers 611 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
4 Answers
671 Views
0 Votes 4 Answers 671 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
24 Answers
613 Views
0 Votes 24 Answers 613 Views
How can I call the runtime of a experiment running on the clearml agent?
one year ago
0 Votes
6 Answers
626 Views
0 Votes 6 Answers 626 Views
I've just tried uploading a few datasets and they are not being detected on the UI.
one year ago
0 Votes
12 Answers
609 Views
0 Votes 12 Answers 609 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 ...
2 years ago
0 Votes
16 Answers
726 Views
0 Votes 16 Answers 726 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
6 Answers
627 Views
0 Votes 6 Answers 627 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
22 Answers
794 Views
0 Votes 22 Answers 794 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
2 years ago
0 Votes
4 Answers
636 Views
0 Votes 4 Answers 636 Views
Are GP3 volumes automatically deleted when the instance is spun down using the clearml aws autoscaler?
aws
2 years ago
0 Votes
7 Answers
600 Views
0 Votes 7 Answers 600 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...
2 years ago
0 Votes
3 Answers
622 Views
0 Votes 3 Answers 622 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
2 Answers
631 Views
0 Votes 2 Answers 631 Views
Hey, Are you thinking of getting ISO27001 or SOC2 at some point / do you already have it?
one year ago
0 Votes
18 Answers
730 Views
0 Votes 18 Answers 730 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...
2 years ago
0 Votes
4 Answers
646 Views
0 Votes 4 Answers 646 Views
2 years ago
0 Can I Prevent

oh okay

2 years ago
0 Hi Guys, I Think There'S Something Wrong On

`
import os
import glob
from clearml import Dataset

DATASET_NAME = "Bug"
DATASET_PROJECT = "ProjectFolder"
TARGET_FOLDER = "clearml_bug"
S3_BUCKET = os.getenv('S3_BUCKET')

if not os.path.exists(TARGET_FOLDER):
os.makedirs(TARGET_FOLDER)

with open(f'{TARGET_FOLDER}/data.txt', 'w') as f:
f.writelines('Hello, ClearML')

target_files = glob.glob(TARGET_FOLDER + "/**/*", recursive=True)

# upload dataset

dataset = Dataset.create(dataset_name=DATASET_NAME, dataset_project=DATASET_PR...

one year ago
0 Happy Friday Everyone

great thank you

2 years ago
0 Hi Guys, I Think There'S Something Wrong On

(deepmirror) ryan@ryan:~$ python -c "import clearml print(clearml.__version__)" 1.1.4

one year ago
0 Hi Guys, I Think There'S Something Wrong On

Looks like it's picking up the projects but then viewing on the UI they disappear

one year ago
0 Hey Guys, Hope You'Re Having A Good Week

I've got it... i just remembered I can call
task_idfrom the cloned tasked and check the status of that 🙂

2 years ago
0 Hi Everyone, I Think It Would Be Nice If

yep using the community version

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

2 years 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 Hi Guys, I Think There'S Something Wrong On

Same with new version
(deepmirror) ryan@ryan:~/GitHub/deepmirror/ml-toolbox$ python -c "import clearml; print(clearml.__version__)" 1.6.1
Generating SHA2 hash for 1 files 100%|███████████████████████████████████████████████████████████████████| 1/1 [00:00<00:00, 2548.18it/s] Hash generation completed Uploading dataset changes (1 files compressed to 130 B) to BUCKET File compression and upload completed: total size 130 B, 1 chunked stored (average size 130 B)

one year ago
0 Are Gp3 Volumes Automatically Deleted When The Instance Is Spun Down Using The Clearml Aws Autoscaler?

Okay, I'm going to look into this further. We had around 70 volumes that were not deleted but could have been due to something else.

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?

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

2 years ago
0 Hey, Just Trying Out Clearml-Serving And Getting The Following Error

Just for ref if anyone has this issue. I had to update my cuda drivers to 510 on system os

` docker run --gpus=0 -it nvcr.io/nvidia/tritonserver:22.02-py3

=============================
== 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 gove...

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

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

2 years ago
0 Hey, Just Trying Out Clearml-Serving And Getting The Following Error

I'm using "allegroai/clearml-serving-triton:latest" container I was just debugging using the base image

2 years ago
0 Hey, Just Trying Out Clearml-Serving And Getting The Following Error

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

2 years ago
0 Hi Guys, I Think There'S Something Wrong On

This was the error I was getting from uploads using the old SDK
has been rejected for invalid domain. heap-2443312637.js:2:108655 Referrer Policy: Ignoring the less restricted referrer policy "no-referrer-when-downgrade" for the cross-site request:

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

Yes already tried that but it seems there's some form of mismatch with a C/C++ lib.

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?

I was having an issue with availability zone. I was using 'eu-west-2' instead of 'eu-west-2c'

2 years ago
0 Hey Guys, Hope You'Re Having A Good Week

if it's completed or not

2 years ago
0 Hi Everyone, I Think It Would Be Nice If

Yes, it's the dependencies. At the moment I'm doing this as a work around.
` autoscaler = AwsAutoScaler(hyper_params, configurations)

startup_bash_script = [
    '...',
]

autoscaler.startup_bash_script = startup_bash_script ` I'd prefer to run it on the Web UI. Also, we seem to have problems when it's executed remotely
2 years ago
Show more results compactanswers