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
PanickyDolphin50
Moderator
3 Questions, 7 Answers
  Active since 04 February 2025
  Last activity 6 months ago

Reputation

0

Badges 1

7 × Eureka!
0 Votes
6 Answers
574 Views
0 Votes 6 Answers 574 Views
Hi everyone ! I am trying to launch multigpu training on remote clearm agent and stuck, because when i do accelerate launch train.py remote agent doesn’t ove...
7 months ago
0 Votes
5 Answers
651 Views
0 Votes 5 Answers 651 Views
Hi everyone! I want to setup uv caching on 1.9.3 agent, but doesnt understand where i should add UV_CACHE_DIR in my clearml config. I have tried several opti...
6 months ago
0 Votes
2 Answers
578 Views
0 Votes 2 Answers 578 Views
Hi everyone! I have no requirements.txt in repo, because it managed by poetry. Is it somehow possible to pass pyproject.tom in clearml-task cli? clearml-task...
6 months ago
0 Hi Everyone

I see that there is two processes, but i dont understand how to properly log them and send both of them on remote server

7 months ago
0 Hi Everyone

@<1523701087100473344:profile|SuccessfulKoala55> Can you give me any advice or workaround to run accelerate on remote agent pls 🥺

7 months ago
0 Hi Everyone

I just want to use multi gpu training for my model and use hf accelerate framework for that. It helps to do it very simple, just several imports and model training distribute across all gpus. The problem, I think, is in the standard way to using that framework- you should launch that via cli and give you python script as a parameter. When you launch it on maschine everything is fine , but when i try to launch remote task on clearml agent multigpu training simply doesn’t work.

7 months ago
0 Hi Everyone

@<1523701087100473344:profile|SuccessfulKoala55> No, i have local machine for develeopment and remote server for training. On that remote server i have 2 gpu and installed clearml-agent. I prepared simple example

import torch
import torch.nn as nn
import torch.optim as optim
from accelerate import Accelerator
from clearml import Task

def main():
    task = Task.init(project_name="test", task_name="accelerate_basic_ex_locallaunch_acc_simple")
    task.execute_remotely(queue_name="mls-...
7 months ago