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
CrookedWalrus33
Moderator
16 Questions, 65 Answers
  Active since 10 January 2023
  Last activity 9 months ago

Reputation

0

Badges 1

64 × Eureka!
0 Votes
11 Answers
1K Views
0 Votes 11 Answers 1K Views
Hi everybody, I'm running experiments inside a docker which includes multiple python instances, some of them are inside conda environments. How can I specify...
2 years ago
0 Votes
8 Answers
1K Views
0 Votes 8 Answers 1K Views
3 years ago
0 Votes
1 Answers
1K Views
0 Votes 1 Answers 1K Views
Hi all, Is there any way to list/query all the Metric events that are associated with a particular task? I did some experiments with APIClient class, but no ...
one year ago
0 Votes
3 Answers
1K Views
0 Votes 3 Answers 1K Views
Hi, What if I need to create a task which requires a private package that is only available as a wheel (in a private git repo)? Any ideas of how to do that?
2 years ago
0 Votes
11 Answers
1K Views
0 Votes 11 Answers 1K Views
Hi everybody. When I want to force the agent to not reproduce my local pip environment, I add Task.force_requirements_env_freeze(force=False, requirements_fi...
2 years ago
0 Votes
10 Answers
1K Views
0 Votes 10 Answers 1K Views
Hi Everyone, I have a task that installs a python requirement from bitbucket over ssh. The requirement are defined in a requirements.txt file. In the agent, ...
one year ago
0 Votes
26 Answers
1K Views
0 Votes 26 Answers 1K Views
Hi everybody, I’m getting errors with automatic model logging on pytorch (running on a dockered agent). 2022-07-14 10:24:06,334 - clearml.storage - INFO - St...
2 years ago
0 Votes
16 Answers
1K Views
0 Votes 16 Answers 1K Views
Hi all, I'm looking for a hint on how to configure a local network drive (nas) as a file server for clearml, that will be cross platform (we have windows, li...
2 years ago
0 Votes
17 Answers
1K Views
0 Votes 17 Answers 1K Views
3 years ago
0 Votes
3 Answers
649 Views
0 Votes 3 Answers 649 Views
Hello everyone, When performing hyperparameter optimization, is there a way to set an objective_metric as the value logged using logger.report_single_value m...
9 months ago
0 Votes
2 Answers
1K Views
0 Votes 2 Answers 1K Views
Hi all. I have a general question regarding the logging mechanism. Using https://github.com/allegroai/clearml/blob/master/examples/frameworks/tensorflow/tens...
3 years ago
0 Votes
5 Answers
1K Views
0 Votes 5 Answers 1K Views
Hi everybody, Am I the only one having issues with logging into https://app.clear.ml/ ?
2 years ago
0 Votes
9 Answers
1K Views
0 Votes 9 Answers 1K Views
Does anyone know why I keep getting that error? clearml_agent: ERROR: ERROR: package manager "conda" selected, but 'conda' executable could not be located I ...
3 years ago
0 Votes
5 Answers
1K Views
0 Votes 5 Answers 1K Views
one year ago
0 Votes
2 Answers
1K Views
0 Votes 2 Answers 1K Views
Hi all, Should be any problem deploying a clearml server on a raspberrypi? (i.e. arm64).
3 years ago
0 Votes
3 Answers
737 Views
0 Votes 3 Answers 737 Views
Hi community, I might have a misunderstanding of the use of task.connect method. It seems like the object I connect is immutable, while it should be mutable....
9 months ago
0 Hi Everybody. When I Want To Force The Agent To Not Reproduce My Local Pip Environment, I Add

This is actually in runtime (i.e. when running the code),

My script looks like that
` import clearml
clearml.Task.force_requirements_env_freeze(force=False, requirements_file="requirements.txt")
task = clearml.Task.init(...)
task.set_script(working_dir=dir, entry_point="my_script.py")
task.execute_remotely(queue_name='default')

rest of script goes here.... `When you refer to runtime, do you mean when the script is executed remotely, or when I run my_script.py locally (in order to ...

2 years ago
0 Hi Everybody, Am I The Only One Having Issues With Logging Into

Im afraid there's something with my account, since it won't login on other browser as well, but logging with a different email works

2 years ago
2 years ago
0 Hi Everybody, I'M Running Experiments Inside A Docker Which Includes Multiple Python Instances, Some Of Them Are Inside Conda Environments. How Can I Specify The Agent To Use A Specific Conda Environment Inside The Docker?

Anyway, when I add the binary's path to PATH, it still won't work.
I call
task.set_base_docker(docker_image='my/docker/image', docker_setup_bash_script= ["export PATH=""/workspace/miniconda/bin:$PATH"])just after Task.init.
On execution, the agent installs all pip requirements with python binary at /usr/bin/python3.6
but eventually the task fails with, /workspace/miniconda/bin/python3: No module named clearml_agent

2 years ago
0 Hi All, I'M Looking For A Hint On How To Configure A Local Network Drive (Nas) As A File Server For Clearml, That Will Be Cross Platform (We Have Windows, Linux And Macos Users...) The Easy Part Is To Modify The Conf File

/mnt/clearml_storage is the mount point of the NAS on one linux machine.
On macos it would be /Volumes/clearml_storage,
On windows - //NAS/clearml_storage

2 years ago
0 Hi Everybody, I’M Getting Errors With Automatic Model Logging On Pytorch (Running On A Dockered Agent).

SweetBadger76
Itā€™s not a credential issue, because I do upload artifacts manually with tsk.upload_artifact(...)
Iā€™ll try changing the extension, but I have to admit that in the past (I havnā€™t used clearml for a while and updated it recently to the latest verion) it did got this file extension right

2 years ago
0 Hi Everybody, I’M Getting Errors With Automatic Model Logging On Pytorch (Running On A Dockered Agent).

Something like:

model = SomePytorchModel()
checkpoint = {'model_state_dict': model.state_dict()}
torch.save(checkpoint, ā€œmodel.tarā€)

2 years ago
one year ago
0 Hi Everybody, I’M Getting Errors With Automatic Model Logging On Pytorch (Running On A Dockered Agent).

can you test what happens if you pass the credentials in the global scope as well, i.e. here:

That didnā€™t help

2 years ago
0 Hello Everybody, I'M Seeking For A Clarification On The 'Metrics' Quote For The Saas Platform. My Workspace Only Uses Self S3 Storage As The File Server To Store Artifacts, Datasets And Models. For Some Reason, My 'Metrics' Quota Is Blown Up By > 30Gb Of

I did found this:

from clearml.backend_api.session.client import APIClient
client = APIClient()
client.events.get_task_metrics(tasks=['some_task_id'], event_type='log')

but it returns an empty 'metrics' object

one year ago
0 Hi Everybody, I'M Running Experiments Inside A Docker Which Includes Multiple Python Instances, Some Of Them Are Inside Conda Environments. How Can I Specify The Agent To Use A Specific Conda Environment Inside The Docker?

It didn't work either. Still same error.
conda command was already in PATH and the conda activate is executed properly, but it prompts to run conda init (i.e conda wasn't configures at that shell):
` You should consider upgrading via the '/usr/bin/python3 -m pip install --upgrade pip' command.
CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'.
To initialize your shell, run
$ conda init <SHELL_NAME>
Currently supported shells are:

  • ba...
2 years ago
0 A Question About Ssh Keys Mount To A Clearnl-Agent Running In Docker Mode. I Noticed That Only When The Task Is Created And Enqueued (Using Python Script), The Local .Ssh Folder Will Be Bind With The Container, But If I Later Reset (Or Clone) And Enqueue

Its mounted automatically.
The local .ssh folder is copied to a temp folder which is mounted by the agent in the docker run command -
Executing: ['docker', 'run', '-t', ......., '-v', '/tmp/clearml_agent.ssh.fuu4r8ta:/root/.ssh', .... , '--rm', 'nvidia/cuda:10.1-cudnn7-runtime-ubuntu18.04', ....]

3 years ago
0 Whet Is The Method For Packages Exploration When Using Conda? Agent Is Set To 'Conda' Mode. We Upload A Task From A Local Conda Env That (Obviously) Has Some Pip Packages As Well. When We Enqueue The Task To Run Remotely, Not All Conda Packages Are Instal

So I run the same script as part of a git repo - but unfortunately the package is still missing.
I'm not sure if it matters but 'kwcoco' is being imported inside one of the repo's functions and not on the script's header.

3 years ago
Show more results compactanswers