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
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
30 Answers
2K Views
0 Votes 30 Answers 2K Views
3 years ago
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
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
33 Answers
163K Views
0 Votes 33 Answers 163K 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 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
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 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.

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

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

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

Hmmm. Just tried cloning a brand new task and the agent is still using the expired github access token.

2 years ago
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

i updated the token in ~/clearml.conf , was careful to ensure it was only specified in one place

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
  • 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

i don’t get why the agent init log would list the username from clearml.conf but then use the env vars

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

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 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.

3 years ago
0 I Have An Experiment That Generates Many Plots, But Not All Of Them Show Up In The “Plots” Section Of The Experiment Results. I Thought I Read Somewhere About A Limit On The Number Of Plots That Would Be Shown In That Section, But I Couldn’T Find It In Th

good questions 🙂
they are plots. they have unique titles. i’m using the auto-logging mechanism—so set up the task, then plt.show() no more than 114 plots are shown in the plots tab.

4 years ago
0 I Have An Experiment That Generates Many Plots, But Not All Of Them Show Up In The “Plots” Section Of The Experiment Results. I Thought I Read Somewhere About A Limit On The Number Of Plots That Would Be Shown In That Section, But I Couldn’T Find It In Th

yep, that’s what i’m seeing, they’re all PNGs in that folder.

yes, i see no more than 114 plots in the list on the left side in full screen mode—just checked and the behavior exists on safari and chrome

4 years ago
0 I’M Having Some Trouble With

but “download plot as png” generates a blank image

2 years ago
0 I’M Having Some Trouble With

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

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

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

2 years ago
Show more results compactanswers