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
636 Views
0 Votes 11 Answers 636 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...
one year ago
0 <no title>

Have you tried using an existing virtual environment?
https://clear.ml/docs/latest/docs/clearml_agent#virtual-environment-reuse

one year ago
0 Another Hpo App Question: Using Ui In "Optimization Configuration" I Can Choose Only One Metric. Is This By Design Or I'M Missing Something?

Could it be multiple metrics that were combined into a single metric later on? Before the optimizer?

one year ago
0 Hi, I Am Trying To Clone An Experiment. Using The Server Gui, I Select 'Clone' And Then 'Enqueue'. In The Console Window, I See That Clearml Makes Sure The Environment Is Installed, And Then It Goes Into A 'Completed' Status Although The Experiment Did N

That's pretty weird. I don't see any clear indications something is wrong, it simply doesn't execute the rest it would seem. Did it successfully run the first time before cloning it?

one year 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 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 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:

So for notebooks requirements are indeed not checked elsewhere.
You can however include them with using this line before Task.init

Task.force_requirements_env_freeze(requirements_file=requirements.txt)

one year ago
one year ago
0 Hi There! Is There An Easy Way To Retrieve The Site-Package Directory That Was Created By An Agent From Inside A Task? Eg.

Do you mean what's visible in the UI, projects -> Execution: Installed Packages?

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

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

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

one year ago
Show more results compactanswers