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
TrickyFox41
Moderator
8 Questions, 37 Answers
  Active since 10 January 2023
  Last activity 2 years ago

Reputation

0

Badges 1

37 × Eureka!
0 Votes
6 Answers
1K Views
0 Votes 6 Answers 1K Views
Hey! i was trying to use my minio instance for artifacts storage but there is not way of making it work. Maybe i am missing something. This is my clearml.con...
aws
2 years ago
0 Votes
8 Answers
1K Views
0 Votes 8 Answers 1K Views
Hi everybody, when using a custom S3 bucket (a minio one) the webapp cant load the debug samples. It displays "Unable to load image". When checking the devel...
2 years ago
0 Votes
0 Answers
1K Views
0 Votes 0 Answers 1K Views
I have initialized the Task as so task = Task.init( project_name=cfg.clearml.project, task_name=cfg.clearml.task, tags=cfg.clearml.tags, output_uri=f" /", )
2 years ago
0 Votes
1 Answers
1K Views
0 Votes 1 Answers 1K Views
Hi again everybody, is there a way to cache the docker containers used by the agents? as far as i understood every time it spawns a new container with a shar...
2 years ago
0 Votes
5 Answers
1K Views
0 Votes 5 Answers 1K Views
Hi, When i create a task using clearml-task specifying some hydra arguments the task correclty shows up in the web app with its arguments. But when i enqueue...
2 years ago
0 Votes
20 Answers
1K Views
0 Votes 20 Answers 1K Views
Hey since Hydra does not work with clearml-task does it work with the hyperparameter optimization?
2 years ago
0 Votes
16 Answers
1K Views
0 Votes 16 Answers 1K Views
Anyone experiencing this with a custom S3 bucket in the debug samples? The S3 configuration in the webapp is correct
2 years ago
0 Votes
0 Answers
1K Views
0 Votes 0 Answers 1K Views
2 years ago
0 Anyone Experiencing This With A Custom S3 Bucket In The Debug Samples? The S3 Configuration In The Webapp Is Correct

I also save the models in the s3 bucket using output_uri=cfg.clearml.output_uri, in the Task.init

2 years ago
0 Anyone Experiencing This With A Custom S3 Bucket In The Debug Samples? The S3 Configuration In The Webapp Is Correct

I specified the upload destination in the logger. Logger.current_logger().set_default_upload_destination(cfg.clearml.media_uri) . Yes Minio with no special config. The s3 config is in the clearml.conf

2 years ago
0 Anyone Experiencing This With A Custom S3 Bucket In The Debug Samples? The S3 Configuration In The Webapp Is Correct

The debug samples are correctly uploaded in the bucket (is a minio bucket) i can see them from the minio webapp. I have used logger.report_image

2 years ago
0 Hey Since Hydra Does Not Work With

By the way, since if i create the task locally, reset it and enqueue it, it works. This is the workaround that i'm using right now

2 years ago
0 Hey Since Hydra Does Not Work With

I tried like that clearml-task --script train.py --args overrides="log.clearml=True train.epochs=200 clearml.save=True" --project mornag-plain-dense --name mornag-plain-dense-training --queue tesla-t4 --skip-task-init

2 years ago
0 Hey Since Hydra Does Not Work With

This is what it looks like from the web app

2 years ago
0 Hey Since Hydra Does Not Work With

I used an env variable to avoid creating and endless loop of init/enqueue (using an argument like clearml.queue that would be captured and forwarded to the agent)

2 years ago
0 Hey Since Hydra Does Not Work With

i printed cfg in the script and the config has not been overwritten 😢

2 years ago
0 Hey Since Hydra Does Not Work With

--args param.ovveride=value does not work with clearml-task

2 years ago
0 Hey Since Hydra Does Not Work With

same result. in print(cfg) there are no overrides

2 years ago
0 Hey Since Hydra Does Not Work With

AgitatedDove14 Yes exactly!

2 years ago
0 Hey Since Hydra Does Not Work With

It only works with argparse

2 years ago
0 Hey Since Hydra Does Not Work With

Yes the task is running on a remote agent with the --docker flag
this is the config on the machine(s) running the agent
`
agent {
venvs_cache: {
max_entries: 50
free_space_threshold_gb: -1
path: ~/.clearml/venvs-cache
}
extra_docker_arguments: [
"--network", "host",
"-v", "/home/ubuntu/.ssh:/root/.ssh:ro",
"-v", "/home/ubuntu/.cache:/root/.cache",
]

docker_internal_mounts {
    sdk_cache: "/clearml_agent_cache"

...

2 years ago
0 Anyone Experiencing This With A Custom S3 Bucket In The Debug Samples? The S3 Configuration In The Webapp Is Correct

Ok i did some investigations and the bug appear from version 1.8.0. In version 1.7.0 there is not. I open a issue in GitHub

2 years ago
Show more results compactanswers