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
UnevenDolphin73
Moderator
106 Questions, 749 Answers
  Active since 10 January 2023
  Last activity 9 months ago

Reputation

0

Badges 1

662 × Eureka!
0 <Edited> Two Things:

These issues popped when I upgraded to clearml-agent 1.5.0.

2 years ago
0 Is There A Way To Set Precedence On Package Managers? If We Set An Agent To Use

Here's how it failed for us 😅
poetry stores git related data in poetry.lock , so when you pip list , you get an internal package we have with its version, but no git reference, i.e. internal_module==1.2.3 instead of internal_module @ git+https://....@commit .
Then pip actually fails (our internal module is not on pypi), but poetry suceeds

2 years ago
0 Is There A Way To Set Precedence On Package Managers? If We Set An Agent To Use

Maybe it's better to approach this the other way, if one uses Task.force_requirements_env_freeze() , then the locally updated packages aren't reflected in poetry 🤔

2 years ago
0 Is There A Way To Set Precedence On Package Managers? If We Set An Agent To Use

Or some users that update their poetry.lock and some that update manually as they prefer to resolve on their own.

2 years ago
0 Is There A Way To Set Precedence On Package Managers? If We Set An Agent To Use

Haha, I've opened so many issues these past few days... Sure, np!

2 years ago
0 Is There A Way To Set Precedence On Package Managers? If We Set An Agent To Use

Right so it uses whatever version is available on the agent.
Yeah it would be nice to have either a poetry_version (a-la https://github.com/allegroai/clearml-agent/blob/5afb604e3d53d3f09dd6de81fe0a494dacb2e94d/docs/clearml.conf#L62 ), rename the latter to manager_version , or just install from the captured environment, etc? 🤔

2 years ago
0 Is There A Way To Set Precedence On Package Managers? If We Set An Agent To Use

Fair enough 😄
Could be nice to be able to define the fallbacks under type maybe?
type: [ poetry, pip ] (current way under the hood) vs type: [ pip, poetry ]

2 years ago
0 Is There A Way To Set Precedence On Package Managers? If We Set An Agent To Use

The tl;dr is that some of our users like poetry and others prefer pip . Since pip install git+.... stores the git data, it seems trivial to first try and install based on pip , and only later on poetry , since the pip would crash with poetry as it stores git data elsewhere (in poetry.lock )

2 years ago
0 Good Week Clearml Team

Would be nice if the second one was a toggle-able feature (either per use or in the server settings) maybe?

2 years ago
0 Is There A Way To Set Precedence On Package Managers? If We Set An Agent To Use

Yeah I figured (2) would be the way to go actually 😄

2 years ago
0 Is There A Way To Set Precedence On Package Managers? If We Set An Agent To Use

Local changes are applied before installing requirements, right?

2 years ago
2 years ago
0 Good Week Clearml Team

Illustrating the first bullet point

2 years ago
0 Since Clearml 1.6.3, A Dataset Attached To A Task Now Renames That Task By Adding A

Ah right, I missed that in the codebase. It just adds the .dataset convention to the dataset task.

2 years ago
0 Good Week Clearml Team

Because I never know which repo to open it in 😁

2 years ago
0 Since Clearml 1.6.3, A Dataset Attached To A Task Now Renames That Task By Adding A

SmugDolphin23 we've been working with this for 2 weeks now, and it creates a lot of junk in our UI. Is there anyway to have better control over this?

2 years ago
0 Is There A Way To Set Precedence On Package Managers? If We Set An Agent To Use

Those are for specific packages, I'm wondering about the package managers as a whole

2 years ago
0 Since Clearml 1.6.3, A Dataset Attached To A Task Now Renames That Task By Adding A

No task, no dataset, just an empty container with no reference to the task it's attached.

It seems to me that it should not move the task if use_current_task=True ?

2 years ago
0 Is There Any Testing Suite That Ships With Clearml? If We'D Like To Make Some Unit Tests For Our Code?

Seems like Task.create is the correct use-case then, since again this is about testing flows using e.g. pytest, so the task is not the current process.

I've at least seen references in dataset.py 's code that seem to apply to offline mode (e.g. in Dataset.create there is if output_uri and not Task._offline_mode: , so someone did consider datasets in offline mode)

2 years ago
0 Is It Possible To Set Values In Clearml Config File Programmatically? Specifically

I think the environment variables path might work for you then?
You'd set your config with
use_credentials_chain: ${CREDENTIALS_CHAIN} Then in Python you could os.environ['CREDENTIALS_CHAIN'] = True/False before you make any calls to ClearML?

2 years ago
0 Is It Possible To Set Values In Clearml Config File Programmatically? Specifically

StaleButterfly40 what use case are you looking for? I've used environment variables in the config file and then I can overwrite them in os.environ before ClearML loads the config

2 years ago
0 Is It Possible To Set Values In Clearml Config File Programmatically? Specifically

I thought this follows from our previous discussion SuccessfulKoala55 , where this is a built-in feature of pyhocon?

2 years ago
0 <Edited> Two Things:

There's not much (or anything) in the log to provide...

` (.venv) 15:42 [0:user@server$~] CLEARML_CONFIG_FILE=~/agent_clearml.conf clearml-agent daemon --queue default on_prem --detached --order-fairness
Environment variables set from configuration: ['AWS_ACCESS_KEY_ID', 'AWS_SECRET_ACCESS_KEY', 'AWS_DEFAULT_REGION']
...

2 years ago
0 <Edited> Two Things:

Sorry for the late reply Jake -- I was away on holidays -- it works perfectly now, thanks!

2 years ago
0 Our Mac Users Are Having Some Issues. They Have Their Respective ~/Clearml.Conf, And Yet They Get: Clearml 1.1.5

The agent also uses a different clearml.conf , so it should not matter?

2 years ago
0 What Happens To File That Are Downloaded To A Remote_Execution Via Storagemanager? Are They Removed At The End Of The Run, Or Does It Continuously Increases Disk Space?

Most of these are configurations (specific for an execution, but one such configuration defines multiple tasks). Some models might be uploaded if the user does not use our built-in link to ClearML model fetching 😄

2 years ago
0 What Happens To File That Are Downloaded To A Remote_Execution Via Storagemanager? Are They Removed At The End Of The Run, Or Does It Continuously Increases Disk Space?

I didn't mention code in #340 nor did I mention data here 😄 The idea was to package non git-specific files for remote execution

2 years ago
Show more results compactanswers