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 8 months ago

Reputation

0

Badges 1

64 × Eureka!
0 Votes
5 Answers
1K Views
0 Votes 5 Answers 1K Views
one year ago
0 Votes
8 Answers
1K Views
0 Votes 8 Answers 1K Views
2 years ago
0 Votes
17 Answers
1K Views
0 Votes 17 Answers 1K Views
2 years ago
0 Votes
3 Answers
678 Views
0 Votes 3 Answers 678 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....
8 months 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
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
9 Answers
991 Views
0 Votes 9 Answers 991 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 ...
2 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
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...
2 years 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
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
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).
2 years ago
0 Votes
16 Answers
989 Views
0 Votes 16 Answers 989 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
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
3 Answers
591 Views
0 Votes 3 Answers 591 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...
8 months 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 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?

AgitatedDove14
Yes, I'd like to point to a specific binary, which is in a conda environment.
(b.t.w how can I specify the python version on the Task?)

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

AgitatedDove14 ,
From the experiment’s console log:
` - boto3==1.16.2

  • botocore==1.19.2 `
2 years ago
0 Hi Everybody. When I Want To Force The Agent To Not Reproduce My Local Pip Environment, I Add

Why do you have this part? isn’t it the same code, the script entry point is auto detected ?

Because I don’t always run the script locally from it’s directory and I have additional modules in the same directory that I import.

Sure this will work

I’ll make sure to update it

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

Oh wow AgitatedDove14 . Appreciate it!
Are you sure it’s just a matter of the python version?
The same experiment script, was working on the exact docker image in the past (with older clearml versions though…).
For example this experiment log:

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

what does that actually mean?
2022-07-17 07:59:40,339 - clearml.storage - ERROR - Failed uploading: Parameter validation failed: Invalid type for parameter ContentType, value: None, type: <class 'NoneType'>, valid types: <class 'str'>

2 years ago
0 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.

Hi @<1523701070390366208:profile|CostlyOstrich36> ,
The idea is indeed to control the object via API, but in that particular case, if I don't want the seed to be specified by the API but just set it to be current timestamp.
Could you think of a better use?

8 months ago
0 Hello Everyone, When Performing Hyperparameter Optimization, Is There A Way To Set An

@<1523701070390366208:profile|CostlyOstrich36> am I doing anything wrong here?

8 months 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
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?

AgitatedDove14 .
Note that the actual error is /workspace/miniconda/bin/python3: No module named clearml_agent since all the packages (including clearml_agent) were already installed by the agent on the default (non conda) python binary.

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?

AgitatedDove14
I'm not sure.
In my case I'm not trying to reproduce a local environment in the agent, but to run a script inside a docker which already has the environment built in.
The environment is conda based.

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

SuccessfulKoala55
we are using the fileserver which is configured at clearml.conf to a path on a network drive (i.e the NAS) -
files_server: file:///mnt/clearml_storage

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?

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 Hi Everybody. When I Want To Force The Agent To Not Reproduce My Local Pip Environment, I Add

The script is intended to be executed remotely.
Can I declare an absolute path in this case?

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?

AgitatedDove14
It's still failing.
I updated clearml-agent to 1.2.0rc7 and also:
docker_setup_bash_script= [ "export PATH=""/workspace/miniconda/bin:$PATH", "export LOCAL_PYTHON=/workspace/miniconda/bin/python3", "conda activate"])But the conda activate (base env) returns:
CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'.

I noticed that conda ...

2 years ago
2 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

Thank for the great explanation! Now it makes much more sense.
You are right about the issue that 'kwcoco' isn't being detected, and Im actually running this as a single script, and the kwcoco not imported directly (but from within another package).
Ill try running it from a repo and see how it works.

2 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

No. But this isn't the only package that was installd using pip inside a conda env.
Compare it with Pandas as an example - was installed using pip nad it's actually instaled inside the worker as well (using pip).

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

AgitatedDove14 , did you test it using a worker, or with local execution?
I just tested https://github.com/allegroai/clearml/blob/master/examples/frameworks/pytorch/pytorch_mnist.py with a (docker based) worker and it yields the same error
` 2022-07-17 07:59:40,330 - clearml.Task - INFO - Waiting to finish uploads
2022-07-17 07:59:40,330 - clearml.storage - INFO - Starting upload: /tmp/.clearml.upload_model_0_4d_ikk.tmp => tapsff.local:9000/clearml/examples/PyTorch MNIST train.02ed1df11bf54...

2 years ago
Show more results compactanswers