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
EnviousPanda91
Moderator
14 Questions, 50 Answers
  Active since 10 January 2023
  Last activity 5 months ago

Reputation

0

Badges 1

42 × Eureka!
0 Votes
9 Answers
2K Views
0 Votes 9 Answers 2K Views
hi, how can I get commit id for task using APIClient?
2 years ago
0 Votes
8 Answers
2K Views
0 Votes 8 Answers 2K Views
Hi all! When I try to run tasks for a agent on machine without GPU this error occurs: docker: Error response from daemon: OCI runtime create failed: containe...
2 years ago
0 Votes
4 Answers
2K Views
0 Votes 4 Answers 2K Views
3 years ago
0 Votes
10 Answers
2K Views
0 Votes 10 Answers 2K Views
2 years ago
0 Votes
2 Answers
2K Views
0 Votes 2 Answers 2K Views
Hi! I'm running clearml-agent in docker mode. I want to install my package from pyproject.toml from my project before the experiment running. I've tried to s...
2 years ago
0 Votes
3 Answers
2K Views
0 Votes 3 Answers 2K Views
Hi, when I run clearml-data create --name sampled --project test , this happens: clearml-data - Dataset Management & Versioning CLI Creating a new dataset: R...
3 years ago
0 Votes
16 Answers
2K Views
0 Votes 16 Answers 2K Views
Hi, I’m getting this error when I try to run task on a remote agent with docker mode WEB UI: Please make sure you have the correct access rights and the repo...
3 years ago
0 Votes
3 Answers
449 Views
0 Votes 3 Answers 449 Views
5 months ago
0 Votes
9 Answers
2K Views
0 Votes 9 Answers 2K Views
2 years ago
0 Votes
6 Answers
2K Views
0 Votes 6 Answers 2K Views
Hi! I am running a code from repository, which is cloned by the following command: git clone ssh://git @ :5109.git but ClearML Web UI shows that repository i...
3 years ago
0 Votes
5 Answers
712 Views
0 Votes 5 Answers 712 Views
8 months ago
0 Votes
4 Answers
3K Views
0 Votes 4 Answers 3K Views
2 years ago
0 Votes
5 Answers
2K Views
0 Votes 5 Answers 2K Views
3 years ago
0 Votes
12 Answers
2K Views
0 Votes 12 Answers 2K Views
Hey! I have my custom model, that uses models from populars frameworks inside, such as LGBM, CatBoost etc. Also it have multiple instances of one models of o...
3 years ago
0 Hey! I Have My Custom Model, That Uses Models From Populars Frameworks Inside, Such As Lgbm, Catboost Etc. Also It Have Multiple Instances Of One Models Of One Framework.

AgitatedDove14 hm, I don’t know what is the right expected behaviour, I’ve expected 2 plots. If my assumption looks right, should I make an issue on github?

3 years ago
0 Hi, How Can I Get Commit Id For Task Using Apiclient?

sure
print(APIClient().tasks.get_all(["95db561a08304a1faac3aabcb117412e"]))
{‘id’: ‘95db561a08304a1faac3aabcb117412e’, ‘name’: ‘task’}

2 years ago
0 Hi, When I Run

upd: the status is changed to “Aborted”

3 years ago
0 Hi All, How Can I Change Default Python Version For Conda Env Creating In Clearml-Agent With Conda Mode? I’Ve Set Python 3.7 Path In Agent.Python_Binary, But Clearml Use Python 3.6, That Is Assigned As System Python. Also I’Ve Tried To Set Agent.Ignore_Re

task log
` task ca3ab0ce39aa436f9e656fff378a2c25 pulled from c39519fcfb3f4353808fd266d6100795 by worker v012-0:gpuGPU-0929fd0f-eff1-91f1-854e-9874599660c3
2022-12-12 16:32:21
Current configuration (clearml_agent v1.5.1, location: /tmp/.clearml_agent.guezjnez.cfg):

api.version = 1.5
api.verify_certificate = true
api.default_version = 1.5
api.http.max_req_size = 15728640
api.http.retries.total = 240
api.http.retries.connect = 240
api.http.retries.read = 240
api.http.retri...

2 years ago
0 Hi! After My Experiment Finishes, The Logs And Scalars Disappear After Some Time -- I Can See It At Task Details (Screen 1). But Scalars Are Displayed In The Usual Tabular Form (Screen 2). Additionally, All Of My Previous Experiments (For Few Years) Also

@<1523701070390366208:profile|CostlyOstrich36> yes, WebApp: 1.12.1-397 • Server: 1.12.1-397 • API: 2.26.
Docker version 28.0.1, build 068a01e (updated to this version few weeks ago).

5 months ago
0 Hey! I Have My Custom Model, That Uses Models From Populars Frameworks Inside, Such As Lgbm, Catboost Etc. Also It Have Multiple Instances Of One Models Of One Framework.

AgitatedDove14 for example let’s add to https://github.com/allegroai/clearml/blob/master/examples/frameworks/catboost/catboost_example.py second catboost model training:
` ...
catboost_model = CatBoostRegressor(iterations=iterations, verbose=False)
catboost_model2 = CatBoostRegressor(iterations=iterations+200, verbose=False)
...
catboost_model.fit(train_pool, eval_set=test_pool, verbose=True, plot=False, save_snapshot=True)
catboost_model2.fit(train_pool, eval_set=test_pool, verbose=True,...

3 years ago
0 Hi All, How Can I Change Default Python Version For Conda Env Creating In Clearml-Agent With Conda Mode? I’Ve Set Python 3.7 Path In Agent.Python_Binary, But Clearml Use Python 3.6, That Is Assigned As System Python. Also I’Ve Tried To Set Agent.Ignore_Re

SuccessfulKoala55 yes, I have /usr/bin/python3.8, but it doesn’t help if I set it in agent.python_binary. python3.8 set as alternative #1 for python. but conda for some reason creating env with python3.6...

Executing Conda: /home/user/conda/bin/conda env remove -p /home/jovyan/.clearml/venvs-builds/3.6 --quiet --json

2 years ago
0 Hi! I Had A Self-Hosted Clearml And I Want To Visualize Aggregated Metrics (Mean, Norimalized Mean, Dispersion Etc) To Compare Clearml Projects. How Can I Do That? As I Know, Clearml Web Ui Can'T Do It, It Can Compare Only Few Separate Experiments In One

this is the case of developing AutoML: when I have a lot of datasets and the model should be nice at all datasets in average. So projects here are different versions of AutoML and I need to compare them

8 months ago
0 Hi, When I Run

CostlyOstrich36 self hosted,
clearml ==1.6.4
clearml -agent==1.4.0rc0

3 years ago
0 Hey! I Have My Custom Model, That Uses Models From Populars Frameworks Inside, Such As Lgbm, Catboost Etc. Also It Have Multiple Instances Of One Models Of One Framework.

` import numpy as np
import pandas as pd

from sklearn.metrics import roc_auc_score
from sklearn.model_selection import train_test_split

from lightautoml.tasks import Task
from lightautoml.automl.presets.tabular_presets import TabularAutoML

import clearml

cml_task = clearml.Task.get_task(clearml.config.get_remote_task_id())
logger = cml_task.get_logger()

data = pd.read_csv("./examples/data/sampled_app_train.csv")
....

automl = TabularAutoML(task=Task('binary'))
cml_task.connect(automl)
o...

3 years ago
0 Hi! I’Ve Run A Task In A Docker Container With Memory Constraint 16Gb (Clearml-Task ….. --Docker_Args “--Memory=16G”), So I Expected To See The Max Memory Available Equal 16Gb In Web Ui (Scalars/Monitor:Machine), But It Shows Memory Available In The Whole

docker will Not actually limit the “vioew of the memory” it will just kill the container if you pass the memory limit, this is a limitation of docker runtime

it will only if oom killer is enabled

2 years ago
0 Hi! I Am Running A Code From Repository, Which Is Cloned By The Following Command:

When I updated the URL of the remote repository in my git client

SuperiorPanda77 did you just replace “remote” for the client?

My remote in git client is ok:
ssh://git @<address>:5109<repo_path>.git
so I don’t understand why and where it changes :(

3 years ago
Show more results compactanswers