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 one year ago

Reputation

0

Badges 1

103 × Eureka!
0 Votes
30 Answers
959 Views
0 Votes 30 Answers 959 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 ...
3 years ago
0 Votes
30 Answers
1K Views
0 Votes 30 Answers 1K 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 ...
3 years ago
0 Votes
30 Answers
972 Views
0 Votes 30 Answers 972 Views
3 years ago
0 Votes
10 Answers
1K Views
0 Votes 10 Answers 1K 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...
one year ago
0 Votes
2 Answers
929 Views
0 Votes 2 Answers 929 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...
3 years ago
0 Votes
27 Answers
1K Views
0 Votes 27 Answers 1K Views
3 years ago
0 Votes
33 Answers
47K Views
0 Votes 33 Answers 47K 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 ...
one year ago
0 Votes
7 Answers
1K Views
0 Votes 7 Answers 1K Views
one year ago
0 Running Into A Strange Issue—

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

3 years ago
0 Running Into A Strange Issue—

i did this and have the same error.

3 years ago
0 Running Into A Strange Issue—

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

3 years ago
0 Running Into A Strange Issue—

hmm, it was confusing to me, but it’s kind of an edge case where I was taking over a computer after a colleague left, seems like that might not be a common scenario

3 years ago
0 Running Into A Strange Issue—

also, i’m noticing the “last used” field does not update when I try to start an agent, but does change when I issue the curl command you gave earlier

3 years ago
0 If I Clone A Task, Is There A Way For Me To Update The

yep, that was it. thanks for all your help and sorry to bother 🙂

3 years ago
0 I’M Having Some Trouble With

🤔

Media is uploaded to a preconfigured bucket (see setup_upload()) with a key (filename) describing the task ID, title, series and iteration.

one year ago
0 I Am Trying Pytorch Nightly Again With Python 3.10. Works Fine Locally, But Fails On Clearml-Agent In Docker Mode.

but there was a pip_version: “<20.2” line in myclearml.conf` , which would possibly have been a default in the config file like, 2 years ago or something

one year ago
one year 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?

one year 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

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

if i have code that’s just in a git repo but is not installed in any way, it runs fine if i invoke the entrypoint in a shell. but clearml will not find dependencies in secondary imports (as described above) if the agent someone just clones the repo but does not install the python package in some way.

one year ago
0 I Am Trying Pytorch Nightly Again With Python 3.10. Works Fine Locally, But Fails On Clearml-Agent In Docker Mode.

i noticed that the agent was downgrading to pip=20.1.1 at every attempt, so i added

Task.add_requirements("pip", "23.1.2")

and even then, it downgrades to 20.1.1?

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

okay, so my problem is actually that using a “local” package is not supported—ie i need to pip install the code i’m running and that must correctly specify its dependencies

one year 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

one year ago
one year 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...
one year 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?

one year ago
0 I’M Having Some Trouble With

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

one year ago
0 I’M Having Some Trouble With

okay, so looks like the docs for report_media need an update.

one year 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 😅

one year ago
0 I’M Having Some Trouble With

but “download plot as png” generates a blank image

one year 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?
one year 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”

one year 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

one year ago
0 I’M Having Some Trouble With

but hmm, report_media generates a file that is 0 bytes, whereas report_image generates a 33KB file

one year ago
Show more results compactanswers