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
TimelyMouse69
Moderator
1 Question, 91 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0

Badges 1

5 × Eureka!
0 Votes
11 Answers
1K Views
0 Votes 11 Answers 1K Views
After closing a task you'll have to open it again with init before you can do anything with it. The different statuses are here: https://clear.ml/docs/latest...
2 years ago
0 Hey Everyone, I Have Another Question: Is It Possible To Change Agent Config For Each Task? E.G.

no this should work with this one. I'll double check if I'm remembering it correctly but I thought you should be able to start a task after loading your own configuration object, where can set the agent.package_manager.system_site_packages = true .

one year ago
0 Hey Everyone, I Have Another Question: Is It Possible To Change Agent Config For Each Task? E.G.

It should, or you might need to nest the objects.
Edit: I asked, it won't there's a difference in configs I mixed up.

one year ago
0 Hey

you can pass use the compression parameter in dataset.upload . The supported values are:
ZipFile.ZIP_STORED (no compression) ZipFile.ZIP_DEFLATED (requires zlib) ZipFile.ZIP_BZIP2 (requires bz2) ZipFile.ZIP_LZMA (requires lzma)Note that you need to import ZipFile beforehand: from zipfile import ZipFile
You're probably looking for ZIP_BZIP2 , but I'm not sure about that.

one year ago
0 Hey

For pipelines there's currently no way to use different compressions. You can still use it when explicitly uploading https://clear.ml/docs/latest/docs/references/sdk/dataset/#upload

one year ago
0 Hey, Is There A Way To Temporarily Turn Off Clearml Logging? I’M Using Pipeline And When Developing I Don’T Wand Them To Be Added To The Ui And Spam It. In Wandb There Is A Way To Do

You can definitely turn off logging partially or completely: https://clear.ml/docs/latest/docs/clearml_sdk/task_sdk#automatic-logging

I'm not aware of changing this during the execution of the task (you'll have to set this in task.init) but you can manually log what you need after you (partially) turned off logging.

one year ago
0 Hi Everyone! So, I'M Having A Problem With The Auto Detect Dependencies When Running A Task Remotly. The Problem Is That When I Import Some Function From A File In Another Folder, That Task Doesn'T Catch The Files Depencies. Given A Folder Structure:

Well seems like you have a solution for now?

If you still want to run it as a notebook, the following should make pip install the required packages:

import sys !{sys.executable} -m pip install -r requirements.txt
I'll check if this something we need to update in our documentation or if it's a bug.

one year ago
0 Hello Everyone ! I Tried To Reproduce Your Tutorial :

ExasperatedCrab78 do you know how this could be?

2 years ago
0 Hey All

I think if you use explicit logging it only logs things you've selected but I'm not entirely sure
https://clear.ml/docs/latest/docs/guides/reporting/clearml_logging_example/

2 years ago
0 Hi! I Made A Pr (

PIP can install from git repositories!
So you can point to your own repository or even a specific commit hash.

https://pip.pypa.io/en/stable/topics/vcs-support/

one year ago
0 Hey All

You can disable it if you want to. Sometimes it's useful to retrace your steps but it works without :)

2 years ago
0 Hello, There Is A Means To Export / Import Task Using Task.Export_Task, Task.Import_Task. Is There A Way To Preserve The Task Id When We Bring This Task From One Clearml Server To Another? Both Clearml Server Are Not Connected.

You can use the same project name and the same Taskname if that helps?

I don't think it's possible to set a custom ID if it doesn't exist yet. But I'll double check!

one year ago
0 Hi, I Tried This, But Got Unexpected Result When Set

There seem to be a similar error here: https://github.com/aws/aws-cli/issues/4758

Could it be minio isn't on the same API version as S3?

2 years ago
Show more results compactanswers