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

Reputation

0

Badges 1

40 × Eureka!
0 Votes
12 Answers
1K Views
0 Votes 12 Answers 1K Views
Is there a way to retrieve the debug samples logged by ClearML (or at least retrieve their s3 links) via the python API?
2 years ago
0 Votes
6 Answers
1K Views
0 Votes 6 Answers 1K Views
3 years ago
0 Votes
21 Answers
1K Views
0 Votes 21 Answers 1K Views
Hello, I’m using Dataset.get_local_copy to get the data in the machine. Everything works nicely except when there are two different users running the get_loc...
3 years ago
0 Votes
4 Answers
1K Views
0 Votes 4 Answers 1K Views
Hello, is there a way to get the list of available variants for a metric via the API?
2 years ago
0 Votes
9 Answers
1K Views
0 Votes 9 Answers 1K Views
logger = Logger.current_logger() logger.report_media( title="test", series="audio", local_path="/path/to/file.wav", iteration=1, max_history=-1 )Hello 🙂 I’m...
3 years ago
0 Votes
4 Answers
2K Views
0 Votes 4 Answers 2K Views
Hello, I’m integrating ClearML into my training code to track experiments. I see that ClearML logs automatically the python env in the “installed packages” s...
3 years ago
0 Votes
18 Answers
1K Views
0 Votes 18 Answers 1K Views
Hello, I’m trying to log (via task.connect() ) a dictionary of the exp parameters. As I understood it, ClearML supports only builtin types, but I’m getting t...
3 years ago
0 Is There A Way To Retrieve The Debug Samples Logged By Clearml (Or At Least Retrieve Their S3 Links) Via The Python Api?

some actions can be done using clearml.Task , for instance get a local copy of a model, pull down the scalars etc.

2 years ago
3 years ago
3 years ago
0 Hello, I’M Trying To Log (Via

In [6]: type(conf["a"]["b"]["c"]["d"]) Out [6]: tuple

3 years ago
0 Is There A Way To Retrieve The Debug Samples Logged By Clearml (Or At Least Retrieve Their S3 Links) Via The Python Api?

however, I’m not able to get the audio excerpts uploaded as debug samples. Your suggestion above requires to use REST api via clearml.backend_api but I’m not very much familiar with it

2 years ago
0 Logger = Logger.Current_Logger() Logger.Report_Media( Title="Test", Series="Audio", Local_Path="/Path/To/File.Wav", Iteration=1, Max_History=-1 )

I was on 1.2.0
Upgrading to 1.3.0 resolved the issue with S3 credentials request 🙂
thank you

3 years ago
0 Hello, I’M Trying To Log (Via

Hey CostlyOstrich36 , the parameter I’m trying to log is a tuple (0, 100, None) and it’s stored in a nested dictionary. E.g.
{"a": {"b": {"c": (0, 100, None)}}}

3 years ago
0 Is There A Way To Retrieve The Debug Samples Logged By Clearml (Or At Least Retrieve Their S3 Links) Via The Python Api?

I’d like to programmatically (e.g. jupyter notebook) retrieve files/info related to a task from the server

2 years ago
0 Hello, I’M Trying To Log (Via

SuccessfulKoala55 this is what I see on the Profile page:
WebApp: 1.3.1-169 • Server: 1.3.1-169 • API: 2.17

3 years ago
0 Hello, I’M Trying To Log (Via

CostlyOstrich36 thank you 🙂 I suppose the issues isn’t necessary if someone is already working on a fix?

3 years ago
0 Logger = Logger.Current_Logger() Logger.Report_Media( Title="Test", Series="Audio", Local_Path="/Path/To/File.Wav", Iteration=1, Max_History=-1 )

Your suggestion CostlyOstrich36 works: I’ve added the line in the clearml.conf file.

However, now when I go in the Results -> Debug Samples tab, the s3 credential window pops up. Every time that I refresh the page 😞

3 years ago
0 Hello, Is There A Way To Get The List Of Available Variants For A Metric Via The Api?

this is a snippet of code:
task = Task.get_task('xxx') session = Session() res = session.send(events.GetDebugImageSampleRequest( task=task.id, metric="xxx", variant="xxx") ) print(res.response_data["event"]["url"])

2 years ago
0 Hello, I’M Trying To Log (Via

getting the same behaviour

3 years ago
0 Logger = Logger.Current_Logger() Logger.Report_Media( Title="Test", Series="Audio", Local_Path="/Path/To/File.Wav", Iteration=1, Max_History=-1 )

I’m getting this error:
2022-04-01 16:23:47,578 - clearml.storage - ERROR - Failed testing access to bucket xxx: incorrect region specified for bucket xxxx (detected region eu-west-1)but the server knows how to do the upload because I can do task.upload_artifact without problems 🤔

3 years ago
3 years ago
0 Hello, I’M Trying To Log (Via

upgraded to 1.3.2

3 years ago
0 Hello, I’M Using

Is there a vital reason why you want to keep the two accounts separate when they run on the same machine?

I’ve already implicitly answered this, but to be more precise, having multiple users allows to know who ran the experiment 🙂

3 years ago
0 Hello, I’M Integrating Clearml Into My Training Code To Track Experiments. I See That Clearml Logs Automatically The Python Env In The “Installed Packages” Section But The List Logged Is Very Different From The

Hey CostlyOstrich36 thank you 🙂 I haven’t yet started using the agent to run a task. I’m in the phase of tracking the experiments. The setup that I have is that there’s an yml conda env file (generated via conda env export ) that includes conda and pip packages. I’d like to log the content of that file in ClearML. I’ve tried to use force_requirements_env_freeze but it doesn’t do what I’d hope for. Any suggestion?

3 years ago
0 Hello, I’M Trying To Log (Via

if this is a bug, I can raise an Issue in github and provide a snippet of code to reproduce it

3 years ago
0 Hello, I’M Using

CostlyOstrich36 any updates on this?

3 years ago
Show more results compactanswers