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
ScaryDeer25
Moderator
1 Question, 7 Answers
  Active since 03 May 2023
  Last activity 11 months ago

Reputation

0

Badges 1

7 × Eureka!
0 Votes
12 Answers
514 Views
0 Votes 12 Answers 514 Views
Hi Guys 🙂 We have setup a ClearnML environement and launched our experiment tracking. Everything get tracked properly but when trying to reproduce locally t...
11 months ago
0 Hi Guys

Here are the code.
When using ClearML Agent it does not work but if we copy paste the command line specified in the log as Entry point it works

"entry_point = -m emotions_classification.__main__  lightning train -c  configs/logging.yml -c  configs/lightning_module/multiclass-transformer.yml -c  configs/data_module/fr-emotions-data-module.yml -c  configs/trainer/debug.yml -c  configs/common/camembert-base.yml trainer.logger.name=debug
working_dir = .
11 months ago
0 Hi Guys

Any news guys about this issue ? 🙂

11 months ago
0 Hi Guys

Hello 🙂
here is the full trace:
None

11 months ago
0 Hi Guys

Yeah sure 🙂
Will share it, let me get it ^^

11 months ago
0 Hi Guys

Hi 🙂
Thanks for your reply, I will find it out

11 months ago
0 Hi Guys

Yeah, this is the ouput of the run from the agent

11 months ago
0 Hi Guys

Hello 🙂
This is the snipper using Click

@define()
class ClearMLConfig:
    task_name: str = "First experiment"
    task_type: Task.TaskTypes = Task.TaskTypes.training
    reuse_last_task_id: bool = True
    output_uri: Optional[str] = None


clearml_config = ClearMLConfig()
task = Task.init(project_name='Illuin Emotions',
                 task_name=clearml_config.task_name,
                 reuse_last_task_id=clearml_config.reuse_last_task_id,
                 task_type=clearml_confi...
11 months ago