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

Reputation

0

Badges 1

20 × Eureka!
0 Votes
2 Answers
986 Views
0 Votes 2 Answers 986 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 ...
one year ago
0 Votes
2 Answers
614 Views
0 Votes 2 Answers 614 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...
8 months ago
0 Votes
1 Answers
572 Views
0 Votes 1 Answers 572 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...
7 months ago
0 Votes
1 Answers
915 Views
0 Votes 1 Answers 915 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...
one year ago
0 Votes
2 Answers
1K Views
0 Votes 2 Answers 1K 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...
one year ago
0 Votes
6 Answers
962 Views
0 Votes 6 Answers 962 Views
one year ago
0 Votes
2 Answers
1K Views
0 Votes 2 Answers 1K 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...
one year ago
0 Votes
2 Answers
742 Views
0 Votes 2 Answers 742 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...
10 months ago
0 Votes
2 Answers
427 Views
0 Votes 2 Answers 427 Views
7 months ago
0 Votes
4 Answers
616 Views
0 Votes 4 Answers 616 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...
7 months ago
0 Votes
2 Answers
575 Views
0 Votes 2 Answers 575 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 ...
7 months ago
0 Votes
0 Answers
867 Views
0 Votes 0 Answers 867 Views
**** solved **** i used variables from here - None os.environ['CLEARML_AGENT_GIT_USER'] = 'myuser' os.environ['CLEARML_AGENT_GIT_PASS'] = 'mypass' ----------...
aws
one year ago
0 Votes
16 Answers
1K Views
0 Votes 16 Answers 1K Views
***** solved ***** it appears that ClearML hasn't automatically captured the requirements.txt file in the cloned repository. adding the following line of cod...
one year ago
0 Votes
3 Answers
894 Views
0 Votes 3 Answers 894 Views
one year ago
0 How Can I Use Multiple Docker Args In The Clearml-Task Cli?

update:
--docker-args "-v some_dir:other_dir -v some_dir:other_dir" is the correct format

7 months ago
0 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:

well there is no default one.. and in the docs there is nothing about it. would be nice to add a minimal requirements for the AMI in the docs, instead of just writing "The AWS AMI to launch".
thanks for the answer :)

8 months ago
0 Hello, Everyone. I'M Trying To Use The Hpo In Clearml And Having Some Problems. All Of My Hyperparameters Are Python Dictionaries With Different Values (Int, Float, Bool, Str). When I Set The Hyper-Parameters I Want To Optimize In The Hpo And Send The Tas

we would love to get some clarifications as well, how does strings should be provided? what is the step size param in the uniform type? is it normal that all unused hyperparams in the HPO are displayed as str typein the UI?
thanks!

7 months ago
0 Hi, I Am Looking For A Way To Report A Single Metric Value Of A Trained Model (Lgbm For Example). I'M Currently Using:

here is an example of the logged values, I was hoping for a way to log them so they could be visualize better.. any advice (beside making my own plot and log it)?
image

one year ago
0 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 Attached Log File. In A Brief:

no, im clonning only from gitlab.
another issue i had regarding clonning git raised when i tried using clearml-agent daemon, it was unable to find my git user name (i used the --git-user and --git-pass args). how can one debug these issues, if possible at all from the user side?

7 months ago
0 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 Attached Log File. In A Brief:

yes the agent has already cloned the same repo in the first task (from the same account with the same user and token).
do you mean the full log of the machine itself? the full log of the failed task is attached already

7 months ago
0 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 To Import It, Thus I Need To Add The Package Path To Python Path. Repo Structure:

It seems that when the working directory is set to '.' (root of the cloned repo) I am able to import my package as expected.
I thought about your solution but then it requires me to push every time I change my package which is inconvenient.

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

since it is specifying the pandas==1.5.3 i thought it might be pulling the req file from my main branch so i updated the req file there as well (since i am working on a different branch) and it didn't changedanything (as you might expect)

one year 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...
one year 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:

it seems like it does finds the requirments file otherwise why would it install tsfel tsfresh and some other "non-basic" packages?

one year ago
one year ago
0 Hi, Lately While Trying To Create A New Dataset We Encounter The Following Error: My Code:

conf file:

# ClearML SDK configuration file
api { 
    # Tomer Roditi's workspace
    web_server: 

    api_server: 

    files_server: 

    # corractions server
    credentials {"access_key": "****", "secret_key": "****"}
}
sdk {
    # ClearML - default SDK configuration

    storage {
        cache {
            # Defaults to system temp folder / cache
            default_base_dir: "~/.clearml/cache"
            # default_cache_manager_size: 100
  ...
10 months ago
0 Hi, I Was Wondering How Come My Api Calls Keeps Going Up While I'M Not Executing Any Tasks\Experiments? I Think It Is Related To The Fact That I Have A Worker That Is Running In The Background, And I Was Wondering How Many Api Calls A Worker Is Doing Per

thanks!
by application you mean the web UI? is it possible to estimate the amount of calls it's performing when idle? while viewing an experiment? or some other typical usage?

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

so how can i make clearml to install my req file? i thought that it is automatically detects the req file in the cloned repository..

one year ago