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 2 years 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 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 I Have Install A Python Environment By Virtualenv Tool, Let'S Say

I'm afraid what you're trying to do isn't a supported implementation.
You'll have to choose between using docker mode to have one virtual environment for everything or using the pip mode where you can used the cached virtual environments but you can't reuse the one you currently have.

2 years ago
0 Hi. I Will Try Again Since I Got No Answers Previously

That's interesting, I don't know enough to answer though. :/ AnxiousSeal95 do you happen to know if this is expected behavior? Or how to have the desired outcome?

2 years ago
0 I Have Install A Python Environment By Virtualenv Tool, Let'S Say

Could you test the following:
Without reusing the virtual environment you made manually:
Can you run a task twice and see if the second run is at least reusing the virtual environment of the first run?

2 years ago
0 Hi, I Deployed A Server On My Ubuntu And Forgot About It For A While, I Restart My Computer And It Was Shutdown. Is There A Way To Restore The Experiments? I Didn'T Backup

As far as I know, you can start a docker container with the same version and the same volumes and you should be able to just continue.

2 years 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
0 Hello Guys, How To Make Clearml Not Store Some Artifacts In The Stroage By Default? For Instance, Model Outputs

You can configure what to log and what not in the task init: https://clear.ml/docs/latest/docs/clearml_sdk/task_sdk/#automatic-logging

You can turn it all off by setting auto_connect_frameworks to false but you can do a finer grained control of logged frameworks with framework-boolean pairs

2 years ago
0 I Have Install A Python Environment By Virtualenv Tool, Let'S Say

So could you just setup your virtual environment with a task?

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/

2 years ago
0 Hello All! Quick Question, Do Any Of You Know Of A Clean Way To Access The Clearml Logger Inside Of A

Have you tried
logger = Logger.current_logger()in your code?
Logger is a singleton so you should get the same object from your previously created task
https://clear.ml/docs/latest/docs/references/sdk/logger/#loggercurrent_logger

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 I Have Install A Python Environment By Virtualenv Tool, Let'S Say

ThoughtfulBadger56 Have you uncommented the existing venvs_cache section in the config file?
https://clear.ml/docs/latest/docs/clearml_agent#virtual-environment-reuse

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

2 years ago
0 Hi, When We Use

You can also use https://clear.ml/docs/latest/docs/references/sdk/task/#taskget_task since task.clone also accepts a task object

2 years ago
0 Hello Everyone ! I Tried To Reproduce Your Tutorial :

ExasperatedCrab78 do you know how this could be?

2 years ago
0 Hi, When We Use

You can use https://clear.ml/docs/latest/docs/references/sdk/task/#taskget_project_id to get the id of the last updated project with that name

2 years ago
Show more results compactanswers