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
CostlyOstrich36
Moderator
0 Questions, 4173 Answers
  Active since 10 January 2023
  Last activity 2 years ago

Reputation

0
0 Hi! Ever Since There Was A Huge Frontend Upgrade (A Few Weeks Ago?), We’Ve Been Having Problems With Plotly 3D Scatter Plots For Which

Hi @<1810121608967229440:profile|NonchalantWhale65> , can you provide a short code snippet that reproduces the problematic behaviour?

6 months ago
0 Hi, Is There A Way To Get Only The Last Child From A Clearml Dataset And Not The Entire Graph?

Hi @<1648134232087728128:profile|AlertFrog99> , I don't think there is anything specifically built in for that. You can fetch a list of all children and then see the latest.

one year ago
0 Hi Guys, I Have My Experiment Running On Setup A. However I Need These Experiments Params And Output In Setup B For Comparison. Both Setup Are Not Linked. Anyway For Me To Copy The Outputs And Load It In Setup B Clearml?

OddShrimp85 , Hi 🙂

I'm afraid that the only way to load contents of setup A into setup B is to perform a data merge.

This process basically requires merging the databases (mongodb, elasticsearch, files etc.). I think it's something that can be done in the paid version as a service but not in the open one.

3 years ago
0 The Clearml Enterprise Plan Supports K8S Servicing Multiple Clearml Queues, As Well As Providing A Pod Template For Each Queue For Describing The Resources For Each Pod To Use

The chart already passes the --create-queue command line option to the agent, which means the agent will create the queue(s) it's passed. The open source chart simply doesn't allow you to define multiple queues in detail and provide override pod templates for them, however it does allow you to tell the agent to monitor multiple queues.
None

one year ago
0 Is There A Way To Retrieve The Debug Samples Logged By Clearml (Or At Least Retrieve Their S3 Links) Via The Python Api?

RattyLouse61 , the API will retrieve the URLs for the debug samples. You can then download them manually. If you want these debug samples accessible by other tasks via SDK you might need to save them as artifacts, however you won't have visibility via the UI for those (like playing audio in debug samples section)

3 years ago
0 Does Clearml Automatically Capture

Does ClearML automatically capture

all

stdout/stderr

, like TensorFlow C++

stdout

? Is there an extra process for that? Where is this done and what are the assumptions?

ClearML should capture any output from python code. C++ is not supported

3 years ago
0 Hello, I’M Trying To Log (Via

Let me take a look 🙂

3 years ago
0 Hello, I Encountered An Issue While Deploying A Self-Hosted Clearml Server, By Following The Official Docker Compose

I'm accessing both using SSH tunneling & the same domain

I guess we found the culprit 🙂

2 years ago
0 Hi! How To Add Files Locally To

Does it fail at add_files or at upload ?

3 years ago
0 Hello Everyone . I Am Using

I think you can configure agent.reload_config in clearml.conf and then push the change in the file programmatically somehow

2 years ago
0 Hey, I Tried To Use

Also, what happens when you try to access the dataset through the code?

3 years ago
0 Hi. I Am Trying To Install Clearml-Agent On The Remote Server On Aws. I Successfully Installed It To The Home Directory: Successfully Installed Attrs-20.3.0 Clearml-Agent-1.2.3 Distlib-0.3.4 Filelock-3.4.1 Furl-2.1.3 Idna-2.10 Orderedmultidict-1.0.1 Path

I can think of two solutions:
Fix local python environments and begin using virtual environments ( https://github.com/pyenv/pyenv for example) Use the agent in --docker mode. You won't need to worry about python versions but you will need to install Docker on that machine.

3 years ago
0 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

Hi @<1594863230964994048:profile|DangerousBee35> , I don't think there is such a mechanism currently. What would the expected/optimal behaviour would be in your use case?

4 months ago
0 Hi! Any Idea Why Clearml Fails To Detect Iteration Reporting?

GrievingTurkey78 , what timeout did you set? Please note that it's in seconds so it needs to be a fairly large number

3 years ago
0 Hi! Any Idea Why Clearml Fails To Detect Iteration Reporting?

GrievingTurkey78 , I'm not sure. Let me check.
Do you have cpu/gpu tracking through both pytorch lightning AND ClearML reported in your task?

3 years ago
0 Hi! Any Idea Why Clearml Fails To Detect Iteration Reporting?

GrievingTurkey78 , please try task.init( auto_resource_monitoring=False, ... )

3 years ago
0 Hi! Any Idea Why Clearml Fails To Detect Iteration Reporting?

GrievingTurkey78 , can it be a heavy calculation that takes time? ClearML has a fallback to time instead of iterations if a certain timeout has passed. You can configure it with task.set_resource_monitor_iteration_timeout(seconds_from_start=<TIME_IN_SECONDS>)

3 years ago
0 Hi! We'Re Trying To Orchestrate An Experiment Through The Clearml Ui With A Remote Agent On K8S. Our Training Job Requires A Package Only Available On Our Internal Pypi Server. How Should We Go About This Because The Job Keeps Failing With:

Hi CostlyFox64 ,

Can you try configuring your ~/clearml.conf with the following?
agent.package_manager.extra_index_url= [ "https://<USER>:<PASSWORD>@packages.<HOSTNAME>/<REPO_PATH>" ]

3 years ago
0 Hello Everyone. Im Using Clearml Hpo And Having A Problem With An

I understand. In that case you could implement some code to check if the same parameters were used before and then 'switch' to different parameters that haven't been checked yet. I think it's a bit 'hacky' so I would suggest waiting for a fix from Optuna

one year ago
0 Hi, Anyone Also Stuck With The Exception Encountered Uploading Pytorch Model File? The Dataset Upload Works Fine, Though.

Can you verify you ~/.clearml.conf has proper configuration. If you do
from clearml import Task t=Task.init()Does this work?

3 years ago
0 Hi, In Our Use Case, We Use Multiple Github Repo From Our Organization As Dependent Package. The Issue Is That Github Allow Only One Uniq Ssh

Hi @<1576381444509405184:profile|ManiacalLizard2> , can you please elaborate more on your specific use case? And yes, ClearML supports working only with a specific user currently. What do you have in mind to expand this?

one year ago
0 Hello Community, I'M Planning To Deploy A Self-Hosted Clearml Server On Aws. Our Usage Pattern Is To Run It Intensively Once A Week, With A Few Additional Sessions During The Week To Review Results And Navigate The Ui. I Noticed Clearml Offers A Custom Am

Hi @<1717350332247314432:profile|WittySeal70> , just to clarify, are you talking about the ClearML server itself or about agents?

From my understanding the AMI is simply an image with the ClearML server preloaded to it.

6 months ago
Show more results compactanswers