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
NastyFox63
Moderator
8 Questions, 116 Answers
  Active since 10 January 2023
  Last activity 2 years ago

Reputation

0

Badges 1

103 × Eureka!
0 Votes
7 Answers
2K Views
0 Votes 7 Answers 2K Views
2 years ago
0 Votes
30 Answers
2K Views
0 Votes 30 Answers 2K Views
4 years ago
0 Votes
2 Answers
2K Views
0 Votes 2 Answers 2K Views
if I clone a task, is there a way for me to update the output_uri of the cloned task? i tried clone.set_parameter("output_uri", output_uri) and that didn’t s...
4 years ago
0 Votes
10 Answers
2K Views
0 Votes 10 Answers 2K Views
I’m having some trouble with Task.logger.report_media . i’m trying to report a matplotlib figure that i’ve packed into a BytesIO object (because 2D histogram...
2 years ago
0 Votes
30 Answers
2K Views
0 Votes 30 Answers 2K Views
Hey all, hope you’re all doing well. I’m running a self-deployed server (0.17, i think, where can you find the version in use?). I’m having trouble with the ...
4 years ago
0 Votes
27 Answers
2K Views
0 Votes 27 Answers 2K Views
4 years ago
0 Votes
30 Answers
2K Views
0 Votes 30 Answers 2K Views
running into a strange issue— clearml-agent is unable to authenticate with my clearml server. i’ve got a clearml server running on a local machine, deployed ...
4 years ago
0 Votes
33 Answers
197K Views
0 Votes 33 Answers 197K Views
i’m trying to clone a task that had cloned my code using a github access token that is now expired. i updated to a new token in clearml.conf , and restarted ...
2 years ago
0 Hello All. I'M Experimenting With Clearml And I'Ve Run Into A Strange Issue. I Used

actually its missing imports from the second level too

2 years ago
0 I’M Having Some Trouble With

okay, looks like my main issue was the errant plt.show ( 😩 ). report_media works fine without specifying set_default_upload_destination when that’s been removed 😅

2 years ago
0 Hey All, Hope You’Re All Doing Well. I’M Running A Self-Deployed Server (0.17, I Think, Where Can You Find The Version In Use?). I’M Having Trouble With The Automatic Plot Capture. If I Run

this also fixed a couple other bugs i was seeing. Thanks very much to you for your help and please pass my thanks on to the team as well.

4 years ago
0 Hello All. I'M Experimenting With Clearml And I'Ve Run Into A Strange Issue. I Used

is there a limit to the search depth for this?

i’ve got a training script that imports local package files and those items import other local package files. ex:

train.py

from local_package.callbacks import Callbacks

local_package/callbacks.py

from local_package.analysis import Analysis

local_package/analysis.py

import pandas as pd

the original task only lists the following as installed packages:

clearml == 1.9.1rc0
pytorch_lightning == 1.8.6
torchvisi...
2 years ago
0 I’M Trying To Clone A Task That Had Cloned My Code Using A Github Access Token That Is Now Expired. I Updated To A New Token In

the VCS cache was empty before that run. then, even with the VCS cache being disabled in the config, there was a new lock file and directory after running.

2 years ago
0 I’M Trying To Clone A Task That Had Cloned My Code Using A Github Access Token That Is Now Expired. I Updated To A New Token In

also tried disabling the VCS cache in the config—pull this from the output of the agent’s startup output:

agent.vcs_cache.enabled = false
2 years ago
0 I’M Trying To Clone A Task That Had Cloned My Code Using A Github Access Token That Is Now Expired. I Updated To A New Token In

restarted the server on the off chance that had anything to do with it, and no. VCS is disabled, and the task is trying to pull the correct/latest commit.

2 years ago
2 years ago
0 Running Into A Strange Issue—

i did this and have the same error.

4 years ago
0 Running Into A Strange Issue—

that seems like a good solution 🙂

thank you SuccessfulKoala55 and AgitatedDove14 for your help! Martin identified the problem early on, but I only checked my .bashrc , 😞

4 years ago
0 Running Into A Strange Issue—

okay, they are somehow set as environment variables. let me figure out how they were set.

4 years ago
0 Running Into A Strange Issue—

should api.credentials.access_key be the same as the access_key in clearml.conf ?

4 years ago
0 Running Into A Strange Issue—

no, it’s a key I don’t recognize

4 years ago
0 I’M Trying To Clone A Task That Had Cloned My Code Using A Github Access Token That Is Now Expired. I Updated To A New Token In
  • stopped agent
  • updated clearml.conf to have different username, wrote file
  • verified the vcs-cache is empty
  • started the agent, which resulted in this output
...
agent.custom_build_script =
agent.disable_task_docker_override = false
agent.git_user = aaaaaaaaaaaaa
agent.default_python = 3.9
...

(that’s the username I changed it to)

  • reset and enqueued the task
    checkout failed, it’s still attempting to use the old creds
2 years ago
0 I’M Trying To Clone A Task That Had Cloned My Code Using A Github Access Token That Is Now Expired. I Updated To A New Token In
❯ cat ~/clearml.conf | grep git_user
    git_user: "aaaaaaaaaaaaa"
❯ cat ~/clearml.conf | grep -A 2 vcs_cache
    vcs_cache: {
        enabled: false,
        path: ~/.clearml/vcs-cache
2 years ago
2 years ago
0 I Am Trying Pytorch Nightly Again With Python 3.10. Works Fine Locally, But Fails On Clearml-Agent In Docker Mode.

i am having this same issue—installing pytorch via pip. but i am not specifying a version, and the agent is not able to install pytorch.

even if i specify a version (e.g. torch<2.0 ), it fails.

i guess this is a pip problem, is there a known pip version that works correctly?

2 years ago
0 I’M Trying To Clone A Task That Had Cloned My Code Using A Github Access Token That Is Now Expired. I Updated To A New Token In

thanks much for your help. should have thought to check there earlier, but kind of forgot that was a thing.

2 years ago
0 I’M Having Some Trouble With

but now i’m confused about why set_default_upload_destination is different from output_uri . i kind of get it? but wouldn’t that be a safe default?

2 years ago
0 I Know I’Ve Seen This Issue Pop Up In The Slack Before, But I Couldn’T Find It After Searching. I’Ve Got Some Code That Starts A New Task. The Task Shows Up In The Clearml Web Interface, But When The Task Finishes, It Is Never Marked As “Completed”. It S
2023-05-06 12:05:49,168 - clearml.Task - WARNING - ### TASK STOPPED - USER ABORTED - STATUS CHANGED ###

lol.
this changes the status in the UI to “aborted”.

not ideal, but if the answer is “for this to work, tasks must be run by an agent” i accept it

2 years ago
Show more results compactanswers