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
ObedientDolphin41
Moderator
4 Questions, 37 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0

Badges 1

27 × Eureka!
0 Votes
8 Answers
1K Views
0 Votes 8 Answers 1K Views
Hey all, quick question about pipeline execution queues. I set the execution_queue='queuename' on my individual pipeline components using the decorator, and ...
one year ago
0 Votes
10 Answers
1K Views
0 Votes 10 Answers 1K Views
Hi all! Question about pipelines using decorators. The first step of my pipeline uses a specific repo, specified using PipelineDecorator.component(repo='repo...
one year ago
0 Votes
20 Answers
1K Views
0 Votes 20 Answers 1K Views
Hello all, thanks for this really cool software and community! I have a question on importing local modules when using the Pipelines from Decorators. Startin...
one year ago
0 Votes
7 Answers
1K Views
0 Votes 7 Answers 1K Views
one year ago
0 Hey There! Setting Up Clearml On A New Coworker’S Windows Laptop And Running Into Issues. Here Is The Stacktrace When Running A Test Script, Which Simply Initiates A Task. The Clearml.Conf Only Consists Of The Api {} Code Snippet That Is Given When Adding

Hi Jake! The clearml.conf file content is exactly the api section that is given by our clearml server, copied using the copy button, something like

api { 
    web_server: http:// .. :8080
    api_server: http:// .. :8008
    files_server: http:// .. :8081
    credentials {
        "access_key" = "KEY"
        "secret_key"  = "SECRET"
    }
}

clearml version 1.9.0
The strange thing is that the configuration works perfectly on my machine. My coworker’s machine does have a different p...

one year ago
0 Hi Everyone. I Have A Problem With Pipeline. I Use

Additionally, I have found it helpful to take a look into the agent’s working directory. With the python error should be the location of the script, and it may tell you a bit more by browsing that directory

one year ago
0 Hi All! Question About Pipelines Using Decorators. The First Step Of My Pipeline Uses A Specific Repo, Specified Using

Would this then be possible by cloning the task (which is a pipeline) and accessing the right subtask (the component which should be changed)?

one year ago
0 Hey There! Setting Up Clearml On A New Coworker’S Windows Laptop And Running Into Issues. Here Is The Stacktrace When Running A Test Script, Which Simply Initiates A Task. The Clearml.Conf Only Consists Of The Api {} Code Snippet That Is Given When Adding

So we got it! Still don’t understand it though.
I generated the credentials on the web ui and sent them to my coworker, they did not work at all.
He generated his own credentials and they work!

one year ago
0 Hi, Is There A Way To Clone An Experiment That Uses Two Distinct Repositories?

Personally I’ve found this (sort-of hacky) approach to work, by passing your git credentials as environment variables to the agent’s docker and cloning the repo in the code. You’ll have to make sure you have the right packages installed though.
` if 'GIT_USER' in os.environ:
git_name, git_pass = os.environ['GIT_USER'], os.environ['GIT_PASS']
call(f'git clone https://{git_name}:{git_pass}@gitlab.com/myuser/myrepo', shell=True)
global myrepo
from myrepo import func
elif local_re...

one year ago
Show more results compactanswers