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
DangerousBee35
Moderator
22 Questions, 34 Answers
  Active since 26 July 2023
  Last activity 6 months ago

Reputation

0

Badges 1

32 × Eureka!
0 Votes
2 Answers
1K Views
0 Votes 2 Answers 1K Views
HPO with optuna via webapp (pro version) is not working as expected. i generated a dummy task that logs a random value into some metric and closes, the code:...
hpo
7 months ago
0 Votes
1 Answers
2K Views
0 Votes 1 Answers 2K Views
how can i use multiple docker args in the clearml-task cli? --docker_args '-v=some_dir:other_dir' -----> a single value works fine --docker_args '-v=some_dir...
one year ago
0 Votes
4 Answers
726 Views
0 Votes 4 Answers 726 Views
hi, I'm experiencing with hydra integration with clearml. as the docs here mentions, the config file is added as blob. i want to use hyperparameters optimiza...
7 months ago
0 Votes
5 Answers
1K Views
0 Votes 5 Answers 1K Views
11 months ago
0 Votes
1 Answers
1K Views
0 Votes 1 Answers 1K Views
Hi, we are migrating from AWS to GCP machines and we experience issues with task.connect function. the issue is that on GCP machines that are spawn by the au...
8 months ago
0 Votes
3 Answers
2K Views
0 Votes 3 Answers 2K Views
2 years ago
0 Votes
4 Answers
881 Views
0 Votes 4 Answers 881 Views
Hi, i was wondering if there is a way to attach files that are not committed to git to task run? i'm aware to the option of apply_files in the clearml.conf f...
6 months ago
0 Votes
1 Answers
2K Views
0 Votes 1 Answers 2K Views
Hi, I am using ClearML on a self-hosted server (with Kubernetes using Helm). currently we are using the free version and i was wondering if it is possible to...
2 years ago
0 Votes
2 Answers
2K Views
0 Votes 2 Answers 2K Views
Hi, I'm using lightgbm package to train models. in my task execution I'm getting lots of warnings print from lightgbm. when running locally these prints are ...
2 years ago
0 Votes
6 Answers
2K Views
0 Votes 6 Answers 2K Views
2 years ago
0 Votes
0 Answers
2K Views
0 Votes 0 Answers 2K Views
**** solved **** i used variables from here - None os.environ['CLEARML_AGENT_GIT_USER'] = 'myuser' os.environ['CLEARML_AGENT_GIT_PASS'] = 'mypass' ----------...
aws
2 years ago
0 Votes
4 Answers
2K Views
0 Votes 4 Answers 2K Views
hi, im using aws autoscaler and having issues with clonning repos on a machine that has already run a task before. you may see the entire error in the attach...
one year ago
0 Votes
2 Answers
2K Views
0 Votes 2 Answers 2K Views
I'm trying to use the AWS autoscaler and I'm having some difficulties with the AMI configuration. from what i tested the AMI should include: - python install...
one year ago
0 Votes
14 Answers
1K Views
0 Votes 14 Answers 1K Views
hey, I'm using clearml GCP autoscaler and it seems that task.connect is very slow compared to the same setup in clearml AWS autoscalers. it might takes up to...
8 months ago
0 Votes
2 Answers
2K Views
0 Votes 2 Answers 2K Views
Hi, I am looking for a way to report a single metric value of a trained model (lgbm for example). I'm currently using: logger.report_scalar(title='train', se...
2 years ago
0 Votes
2 Answers
2K Views
0 Votes 2 Answers 2K Views
is it normal that (idle) workers that are spun by the aws autoscaler are not shut down when the autoscaler is stopped? I'm experiencing this issue a lot and ...
one year ago
0 Votes
2 Answers
1K Views
0 Votes 2 Answers 1K Views
one year ago
0 Votes
5 Answers
918 Views
0 Votes 5 Answers 918 Views
hi, is it a well known issue that once you upload an artifact with the prefix of "data_" to a task, you cannot fetch the task since clearml sees it as a data...
10 months ago
0 Votes
2 Answers
2K Views
0 Votes 2 Answers 2K Views
Hi, lately while trying to create a new dataset we encounter the following error: my code: from clearml import Dataset, Task dataset_1 = Dataset.create(datas...
one year ago
0 Votes
16 Answers
3K Views
0 Votes 16 Answers 3K Views
***** solved ***** it appears that ClearML hasn't automatically captured the requirements.txt file in the cloned repository. adding the following line of cod...
2 years ago
0 Votes
2 Answers
833 Views
0 Votes 2 Answers 833 Views
7 months ago
0 Votes
2 Answers
2K Views
0 Votes 2 Answers 2K Views
Hi, I am running a script from a git repository. in the repository there is a package that i wrote and i would like the script that i am running to be able t...
2 years ago
0 Hpo With Optuna Via Webapp (Pro Version) Is Not Working As Expected. I Generated A Dummy Task That Logs A Random Value Into Some Metric And Closes, The Code:

Hi, sure, there is nothing special there, even some redundancy.

def initialize_clearml_task(
        project_name: str = None,
        task_name: str = None,
        task_type: str = None,
        tags: list[str] = None,
) -> tuple[Task, Logger]:
    """
    Initialize and configure a ClearML task.

    Parameters
    ----------
    project_name : str
        Name of the ClearML project.
    task_name : str
        Name of the ClearML task.
    task_type : str
        Type of the ClearM...
7 months ago
0 ***** Solved ***** It Appears That Clearml Hasn'T Automatically Captured The Requirements.Txt File In The Cloned Repository. Adding The Following Line Of Code At The Beginning Of My Script Fixed That:

installed packages before the task is running:

# Python 3.10.10 | packaged by Anaconda, Inc. | (main, Mar 21 2023, 18:39:17) [MSC v.1916 64 bit (AMD64)]

GitPython == 3.1.31
bokeh == 2.4.3
boto3 == 1.26.158
botocore == 1.29.158
clearml == 1.11.1
h5py == 3.8.0
holoviews == 1.16.0
joblib == 1.2.0
lightgbm == 3.3.5
mat73 == 0.60
matplotlib == 3.7.1
numpy == 1.23.5
pandas == 1.5.3
pytest == 7.3.1
scikit_learn == 1.3.0
scipy == 1.10.1
shapely == 2.0.1
sktime == 0.21.0
statsmodels == 0.13.5
t...
2 years ago
0 Hi, I'M Experiencing A New Issue With Logging Scalars And Plots. It Seems That Something Has Changed On Your Side (Clearml) And Scalar And Plots Are Having Trouble Getting Logged (Usin The Pro Plan Of Clearml). The Result Is A Full Training Run Without Sc

i don't have one, as i said it is not very reproduceable. the same code runs fine one time, and another time (running the exact same experiment) it works the same but with the logging issues. as i mentioned, IMO it is not something related to the code itself but to connectivity with clearml servers. i'm running on GCP machines, which is not the first time i'm experiencing connectivity issues with clearml when working on them (we migrated from AWS ec2 a few weeks ago). the first issue was with...

7 months ago
Show more results compactanswers