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 Hi, I Was Using The K8S Glue And It Worked Fine On One Project But Didn'T Work On Another. At The Point Just Before A Git Clone Was Executed, I Get The Error

SubstantialElk6 you are right, only agent running docker mode will do it, you are running venv mode.
The clearml-agent will try to build a specific virtual environment for your task, with virtualenv . You can just install it in the environment the clearml-agent is running from (python3.6?) with python3.6 -m pip install virtualenv and it should work 🙂

3 years ago
0 Hi, I'M Running The Following And Encountering Some Ssl Errors.

Hi SubstantialElk6 ,

Which clearml version did you use? and which python version?
Can you write a small how to reproduce this issue?

3 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
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 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 Am Getting This Error When Using The Aws Auto_Scaler Service (With The Pro Version):

resources configuration, so you have subnet ID and the security group ID and it failed with it?

2 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?

'CLEARML_DOCKER_IMAGE=' can you try running with an image ? the command now is the same as you will do docker run ... without any image

3 years ago
0 Hi, I Started My Agent Using. Clearml-Agent Daemon --Gpus 0 --Queue Gpu --Docker --Foreground, With The Following Parameters In Clearml.Conf.

Hi SubstantialElk6 , can you update your ClearML agent to the latest ( 0.17.2rc4 )?
pip install clearml-agent== 0.17.2rc4 and try with it?

3 years ago
0 When Uploading An Artifact, Can I List It In Some Grouping (Like With Parameters, Having E.G.

not sure about the Other , but maybe adding some metadata to the artifact can do the trick?

You can get all the artifacts with task.artifacts and you can go over it and filter with the metadata, wdyt?

2 years ago
0 Hi, I Am Getting This Error When Using The Aws Auto_Scaler Service (With The Pro Version):

Hi SmugTurtle78 , can you share you configuration? (without the secrets)

  • are you working vpc? did you try configure only one of the params?
2 years ago
0 Hi, I Am Getting This Error When Using The Aws Auto_Scaler Service (With The Pro Version):

yes, this fix almost done testing and will be part of the next release, will keep you updated about it

2 years ago
0 Hi, I Started My Agent Using. Clearml-Agent Daemon --Gpus 0 --Queue Gpu --Docker --Foreground, With The Following Parameters In Clearml.Conf.

you need to run it, but not actually execute it. You can execute it on the ClearML agent with task.execute_remotely(queue_name='YOUR QUEUE NAME', exit_process=True) .

with this, the task wont actually run from your local machine but just register in the ClearML app and will run with the ClearML agent listening to 'YOUR QUEUE NAME' .

3 years ago
0 Hi My Friend

Hi CooperativeSealion8 ,

Sure, we will check that and reactivate soon

4 years ago
0 Is There Any Way To Get Just One Dataset Folder Of A Dataset? E.G. Only "Train" Or Only "Dev"?

Hi SmallDeer34 👋

The dataset task will download all the dataset when using clearml-data task, you have both in the same one?

3 years ago
0 Can The

Hi TenseOstrich47 , the StorageManager does use boto3 for those upload (so if its not supported by boto3, same for StorageManager :/ )
Maybe you can use the 'wait_for_upload' and delete the local file after?

3 years ago
0 Is There A Way To Run A Pipeline (

Hi WackyRabbit7 ,

Did you try using sdk.development.detect_with_pip_freeze as true in your ~/clearml.conf file? It should take the same environment as the one you are running from.

3 years ago
0 Hi, I Started My Agent Using. Clearml-Agent Daemon --Gpus 0 --Queue Gpu --Docker --Foreground, With The Following Parameters In Clearml.Conf.

I can help you with that 🙂

task.set_base_docker("dockerrepo/mydocker:custom --env GIT_SSL_NO_VERIFY=true")

3 years ago
0 Hi, I'M Trying To Set Up

Hi NarrowLobster19 , Is this S3 bucket?

3 years ago
3 years ago
0 Is There A Way To Run A Pipeline (

basically it run pip freeze in your execution env and create the requirements according to it, without any analysis

3 years ago
Show more results compactanswers