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
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
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
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
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 Votes
30 Answers
2K Views
0 Votes 30 Answers 2K Views
3 years ago
0 Votes
33 Answers
164K Views
0 Votes 33 Answers 164K 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 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 Running Into A Strange Issue—

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

4 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 Running Into A Strange Issue—

looking in the web app, under the “App Credentials” section, it lists those credentials as “used” when I attempted the curl command.

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 Running Into A Strange Issue—

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

4 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

i appreciate your help today. it can’t be very fun working on a sunday. i hope you get some relax time away from the computer today, and look forward to hearing more when you are working.

i did want to point out, though, that when manually reporting, it looks like the plots don’t get “cleared” properly: https://demoapp.demo.clear.ml/projects/52eb5c9d938244daaa6fa460edce5e22/experiments/78fa65250e0544d7b50425a82dde75f5/info-output/metrics/plots?columns=selected&columns=type&columns=name&colu...

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

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
0 Running Into A Strange Issue—

of course, SERVER_IP_ADDRESS is the actual IP address of the server, AND i made sure that CLEARML_HOST_IP was set correctly before issuing the docker-compose command

4 years ago
0 Hi, I Can'T Seem To Set A Password To Clearml, Anyone Seems To Be Able To Just Enter The Username And They Can Enter That Username'S Workspace.

hi SubstantialElk6 , not sure if you were successful on this but i struggled with it as well, and it looks like the information is not in the linked document anymore.

in the end i realized that i needed to download apiserver.conf from the clearml-server repo ( https://github.com/allegroai/clearml-server/blob/master/apiserver/config/default/apiserver.conf ) and then add a user/pass for myself (starting at line 82).

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

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

so now i have

git_pass: "[NEW KEY]"
enable_git_ask_pass: false

in my clearml.conf file

2 years ago
Show more results compactanswers