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
30 Answers
2K Views
0 Votes 30 Answers 2K Views
4 years ago
0 Votes
27 Answers
2K Views
0 Votes 27 Answers 2K Views
4 years ago
0 Votes
7 Answers
2K Views
0 Votes 7 Answers 2K Views
2 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
2 Answers
1K Views
0 Votes 2 Answers 1K 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
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
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
173K Views
0 Votes 33 Answers 173K 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 Hi All—First Off, Thanks For Being Such A Helpful And Thorough Group Of People. I Learn A Ton Just Searching Through The Channel For Problems. I’M Seeing A Weird Issue. I Have A Conda Env On My Linux Machine, And I Can Successfully Run A Training Script

okay, i have a few things on my todo list, they will take a while. we will task.init in the entry point instead of how it’s done now, and we will re-try python -m . if it doesn’t work, we will file an issue. if it does work, yay!

either way, thanks much for your help today, i really appreciate it.

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

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

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
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 Am Trying Pytorch Nightly Again With Python 3.10. Works Fine Locally, But Fails On Clearml-Agent In Docker Mode.

i tried lots of things, but values in the conf file (specifically the pip and cuda versions) overriding things in my code/env confused me for a long time

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

okay, that’s a fresh install, and the backend is agg:
` Python 3.8.8 (default, Feb 24 2021, 21:46:12)
[GCC 7.3.0] :: Anaconda, Inc. on linux
Type "help", "copyright", "credits" or "license" for more information.

import matplotlib
matplotlib.get_backend()
'agg' `
the machine is headless, and there’s no window server running.

4 years ago
0 I’M Having Some Trouble With

ah, i had report_image specified, and when i disable that, it worked.

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 Having Some Trouble With

ugh, turns out i had a plt.show() in there, that was causing blank figs.

that said, report_matplotlib_figure did not end up putting anything into “plots” or “debug samples”

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.

the issue also may have been fixed somewhere between 20.1 and 22.2, i didn’t test versions in between those two

2 years ago
0 Hi All—First Off, Thanks For Being Such A Helpful And Thorough Group Of People. I Learn A Ton Just Searching Through The Channel For Problems. I’M Seeing A Weird Issue. I Have A Conda Env On My Linux Machine, And I Can Successfully Run A Training Script

okay, so here’s what i found out—
calling the training entry point directly (eg /path/to/train.py ), and not instantiating the clearml Task in train.py (eg calling a method in a different module where the task is instantiated) does work calling the entrypoint with python -m , but instantiating the clearml Task within train.py also works
so the only thing that doesn’t work is calling the entrypoint with python -m and calling a method from a different module that ...

3 years ago
0 I’M Having Some Trouble With

okay, so if i set set_default_upload_destination as URI that’s local to the computer running the task (and the server):

  • the server is “unable to load the image”—not surprising because the filesystem URI was not mounted into the container
  • the files are present at the expected location on the local filesystem, but they are…blank! all white.that tells me that report_media might have been successful, but there’s some issue …encoding the data to a jpeg?
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
Show more results compactanswers