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
VexedElephant56
Moderator
9 Questions, 22 Answers
  Active since 10 January 2023
  Last activity 5 months ago

Reputation

0

Badges 1

22 × Eureka!
0 Votes
2 Answers
705 Views
0 Votes 2 Answers 705 Views
Is it possible to force the clearml agent to easily not install anything in venv?
one year ago
0 Votes
1 Answers
547 Views
0 Votes 1 Answers 547 Views
Hello, does anybody here work with ClearML on preemptible instances? I'd like to achieve the following: - I enqueue a preemptible task A - Task A gets fetche...
8 months ago
0 Votes
6 Answers
701 Views
0 Votes 6 Answers 701 Views
Hello, I have my ClearML instance hosted at URL " None ". ClearML agent for some reason cannot connect to " None " DEBUG:urllib3.util.retry:Incremented Retry...
one year ago
0 Votes
2 Answers
289 Views
0 Votes 2 Answers 289 Views
5 months ago
0 Votes
5 Answers
781 Views
0 Votes 5 Answers 781 Views
one year ago
0 Votes
3 Answers
445 Views
0 Votes 3 Answers 445 Views
Hello, I have a self-hosted docker-based Clearml and lately uploading artifacts is super slow: uploading 4GB artifact takes 30 mins+. What could be a reason ...
6 months ago
0 Votes
6 Answers
677 Views
0 Votes 6 Answers 677 Views
How to apply agent configuration (i.e. clearml.conf) to agent-services in the docker-compose file?
10 months ago
0 Votes
5 Answers
1K Views
0 Votes 5 Answers 1K Views
I have a repository which uses Git LFS and would like to run a task through Docker-based agent. Despite installing git-lfs in the docker image, I get the fol...
one year ago
0 Votes
11 Answers
748 Views
0 Votes 11 Answers 748 Views
Hello, ClearML! Let's say that I have a git repository in format ssh://git@repo.com:2222/jks/experiment.git I have found out that Task removes git@ part from...
one year ago
0 How To Apply Agent Configuration (I.E.

Thanks, that should do.

10 months ago
0 How To Apply Agent Configuration (I.E.

For example, I'd like to setup agent.python_binary variable for my "agent-services" service, how can I achieve that?

10 months ago
0 Hello, I Have My Clearml Instance Hosted At Url "

it's put in the home directory of mine

one year ago
0 Hello, Clearml! Let'S Say That I Have A Git Repository In Format

On the other hand: remove_user_pass_from_url("git@repo.com:2222/jks/experiment.git") works correctly as it results in git@repo.com:2222/jks/experiment.git

one year ago
0 Hello, Clearml! Let'S Say That I Have A Git Repository In Format

Yes, it's the same, because the passed url is the same. I need to have git url in the mentioned format or the agent cannot clone the repo.

one year ago
0 Hello, I Have My Clearml Instance Hosted At Url "
api {
    # Notice: 'host' is the api server (default port 8008), not the web server.
    api_server: 

    web_server: 

    files_server: 

    # Credentials are generated using the webapp, /settings
    # Override with os environment: CLEARML_API_ACCESS_KEY / CLEARML_API_SECRET_KEY
    credentials {"access_key": "snip", "secret_key": "snip"}
}
one year ago
0 My Clearml Fileserver Is Super Slow. Scp Command Works Sends 10 Mb/S, But Downloading Clearml Artifact Using Api, Using The Same Source And Destination Machines Has 0.06 Mb/S Transfer. What Could Be The Cause? Clearml Fileserver Is Hosted As A Docker Cont

Simple docker compose. The connection shouldn't go through VPN. Generally even while using an agent at the same machine, upload is woefully slow - a 4 GB file is uploading for more than 40 minutes.

5 months ago
0 How To Apply Agent Configuration (I.E.

In the default docker compose file None there is "agent-services" service. It is an agent which for example runs pipeline controllers. Agent run from CLI can be configured, using clearml.conf file. Can I use clearml.conf file to configure "agent-services" service?

10 months ago
0 Hello, I Have My Clearml Instance Hosted At Url "

Yep, timeout as well, although requests.get(" None ") works just fine

one year ago
0 Hello, I Have My Clearml Instance Hosted At Url "

Alright, I have disabled the proxy entirely and now everything is fine. I still don't know what the reason is for this behaviour, GET requests get through just fine.

one year ago
0 Hello, Clearml! Let'S Say That I Have A Git Repository In Format

I need to use SSH-based authentication, so I guess that's not an option. Well the removal affects cloning URL, i.e. while ssh://git@repo.com:2222/jks/experiment.git works fine ssh://repo.com:2222/jks/experiment.git doesn't, because it assumes current user as SSH user.

one year ago
0 Hello, Clearml! Let'S Say That I Have A Git Repository In Format

Therefore it's a minor bug and not working as intended because that function converts:
ssh://git@repo.com:2222/jks/experiment.git into
ssh://repo.com:2222/jks/experiment.git

one year ago
0 Hello, Clearml! Let'S Say That I Have A Git Repository In Format

I think it works now by accident, as mailto:git@repo.com is not a valid scheme URL, so it doesn't get parsed at all by furl library

one year ago
0 Hello, Clearml! Let'S Say That I Have A Git Repository In Format

I think it should be something like this:
f = furl(url) if f.scheme in ['http', 'https', 'ssh'] and f.password: url = f.remove(username=True, password=True).tostr()instead of:
url = furl(url).remove(username=True, password=True).tostr()

one year ago
0 Traceback (Most Recent Call Last): File "/Root/.Clearml/Venvs-Builds/Task_Repository/Slot-Filler.Git/2_Engineer_Prompts.Py", Line 159, In <Module> Trainer.Train() File "/Root/Miniconda3/Envs/Ml-Training/Lib/Python3.9/Site-Packages/Transformers/Tra

The custom callback I have used is:
` class MyClearMLCallback(ClearMLCallback):
def init(self, *args, **kwargs):
self._task_name = kwargs.pop("task_name", None)
self._project_name = kwargs.pop("project_name", None)
super().init(*args, **kwargs)

def setup(self, args, state, model, tokenizer, **kwargs):
    if self._clearml is None:
        return
    if state.is_world_process_zero:
        logger.info("Automatic ClearML logging enabled."...
one year ago
0 I Have A Repository Which Uses Git Lfs And Would Like To Run A Task Through Docker-Based Agent. Despite Installing Git-Lfs In The Docker Image, I Get The Following Error:

Yep, custom image, extension of the nvidia/cuda:12.0.0-base-ubuntu22.04 image.

These are the last lines of the Dockerfile:
image

one year ago
0 Traceback (Most Recent Call Last): File "/Root/.Clearml/Venvs-Builds/Task_Repository/Slot-Filler.Git/2_Engineer_Prompts.Py", Line 159, In <Module> Trainer.Train() File "/Root/Miniconda3/Envs/Ml-Training/Lib/Python3.9/Site-Packages/Transformers/Tra

Something is changed by executing the program through agent, because I executed exactly the same code on exactly the same docker image and it doesn't produce this error.

one year ago
one year ago