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
TimelyPenguin76
Administrator Moderator
0 Questions, 711 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0
0 I Am Currently Running A Clearml-Server And Have Few Questions About Dataset Management.

I think the only way you can get it is from the task attribute:

ds = Dataset.get(dataset_id="your dataset id") ds_uri = ds._task.artifacts.get("data").url

3 years ago
0 One More Follow-Up Still; We'Re Trying To Run Non-Gpu Scaler, And I'Ve Finally Sorted Out Subnet And Security Groups Issues, Only To Run Into This:

I’m using some old agent I fear, since our infra person decided to use chart 3.3.0

That could be the issue, can you update to the latest version so we can check if this is the issue?

I’ll try with the env var too. Do you personally recommend docker over the simple AMI + virtual environment?

Depends, with docker you know what youll get and you can control many, venv should be quicker and you can set it before

More complete log does not add much information -

Can you sen...

2 years ago
0 Hello, Is There Some Way To Use Clearml With "Spawn" Multiprocessing? By "Spawn" Multiprocessing I Refer To:

Hi StaleMole4 ,

Hag Sameach 🙂 I just tried with the latest version and didn’t get any issues, can you try with it?

3 years ago
0 Hi Clm Community, I Am Having An Issue With A Private Package Install When Using Clearml-Agent By Env (Not Docker). Things I Have Tried: Adding The Package Repository To "Extra_Index_Url" Adding The Conda Env To "Python_Binary" Listing The Libraries To I

Hi FlatStarfish45 ,

In the UI you can view the packages that the task will use (under EXECUTION tab), what do you get? Does it contains your packages in the INSTALLED PACKAGES section?

3 years ago
0 Hi Everybody. I Have Setup Clearml With Some Agents That Execute Experiments In Docker Mode. This Is Working Perfectly. I Am Now Also Trying To Use The Pycharm Plugin To Debug An Issue. Basically I Am Confused If "Remote Debugging" Should Work / Kick In

Hi ElegantDeer55 ,

Are you referring to https://github.com/allegroai/trains-pycharm-plugin ? If so, it should sync you .git folder to the remote machine so the task will log the git.

Basically I am confused if “remote debugging” should work / kick in automatically when running in docker mode and starting a task like this:

 from trains import Task
task = Task.init(project_name=“my project”, task_name=“my task”)
task.execute_remotely()

When you are running this code from you P...

3 years ago
3 years ago
0 Hi, I'M Trying To Use The Clearml-Logger To Present Images In The Results-Plots Tab : Logger = Self.Task.Get_Logger() Logger.Report_Matplotlib_Figure(Title=File_Name, Figure=Fig, Series='', Iteration=Iteration) However, The Image Does Not Exist In The Res

GiganticBat57 if you are running this code, do you get the output?
` import numpy as np
import matplotlib.pyplot as plt

from clearml import Task

task = Task.init(project_name='tests', task_name='test matplotlib')
logger = task.get_logger()

N = 50
x = np.random.rand(N)
y = np.random.rand(N)
colors = np.random.rand(N)
area = (30 * np.random.rand(N))**2 # 0 to 15 point radii
plt.scatter(x, y, s=area, c=colors, alpha=0.5)

Plot will be reported automatically

logger.report_matplotlib_figure(...

3 years ago
0 Hi I Get The Following Error Repeatedly - Any Idea What May Cause This?

Hi ImmensePenguin78 , can you ping the server?

3 years ago
0 Hi, I Am Trying To Use Clearml-Data To Upload My Data To S3, Which Is Password Protected. How Should I Indicate The Credentials After I Set --Storage S3://.... ?

SubstantialElk6 you can try:

dataset_upload_task = Dataset.get(dataset_id=dataset_task) path_with_data = dataset_upload_task.get_local_copy()

3 years ago
0 Hi Clm Community, I Am Having An Issue With A Private Package Install When Using Clearml-Agent By Env (Not Docker). Things I Have Tried: Adding The Package Repository To "Extra_Index_Url" Adding The Conda Env To "Python_Binary" Listing The Libraries To I

Hi FlatStarfish45 ,

The HPO task will control the HPO process, means it will clone the base task (the one we are optimizing), change the parameters, enqueue it and collect the results.
The base task is the task we want to optimize.
Each one of those two tasks, have different requirements.
You can look at the https://clear.ml/docs/latest/docs/guides/optimization/hyper-parameter-optimization/examples_hyperparam_opt#set-up-the-arguments for how set the base task in the HPO task.
can this be ...

3 years ago
0 Hi Here. Is It Possible To Run Clearml-Agent With Pre-Ready Pip Virtual Environment And Avoid Packages Installation From Requirments.Txt/Installed Packages ?

HelpfulHare30 try using CLEARML_AGENT_SKIP_PIP_VENV_INSTALL env var with the path you your python env:
CLEARML_AGENT_SKIP_PIP_VENV_INSTALL=/path/to/your/python

2 years ago
0 What’S The Easiest Way To Update The Repo Url Alone For A Task? Need - In My Ci, The Url Used Is Https But I Need The Ssh Url To Be Used. I See That We Can Pass Repo To Task.Create But Not Task.Init

Hi TrickySheep9 ,

The Task.init call will detect your repository as part of the automagic. You can disable it with
auto_connect_frameworks={'detect_repository': False}but I dont think this is the case.

Maybe clearml-task ? You can https://clear.ml/docs/latest/docs/guides/clearml-task/clearml_task_tutorial

3 years ago
0 Seeing This Error When Trying To Run A Monitor In Services Queue (Agentservices Running On Kubernetes): Am I Missing Some Configuration I Need To Add Over Defaults?

Hi TrickySheep9 , can you copy the docker run command? do you docker install and running on the machine running the agent?

3 years ago
0 Hello Everyone, I'M Trying To Do Prepare A Pipeline On Clearml With My Custom Framework Script That Import And Executes Other Scripts. However, When I Write Functions Inside The Pipeline I Get

Hi GhastlySquirrel83 ,

You can specify the repository ( repo=None, repo_branch=None, repo_commit=None parameters) in the add_function_step for connecting the specific repo into the step, you can view all the options with some examples here - https://clear.ml/docs/latest/docs/references/sdk/automation_controller_pipelinecontroller#add_function_step

2 years ago
0 Hi. I'M Running This Little Pipeline:

Sure, all the auto magic can be configured too - https://clear.ml/docs/latest/docs/faq#experiments , search for Can I control what ClearML automatically logs? to view all the options 🙂

2 years ago
3 years ago
0 Hey, I Have A Problem With The Following Task:

can you try upgrade? I run it with trains==0.16.2rc0

4 years ago
0 Another Question On The Topic Of How A Remote Execution Of A Pipeline Kills The Calling Process (Previously Discussed

Hey PanickyMoth78 ,

my_pipeline is wrapped with @PipelineDecorator.pipeline ? some other decorator?

2 years ago
Show more results compactanswers