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
GorgeousShrimp11
Moderator
9 Questions, 37 Answers
  Active since 06 January 2024
  Last activity one day ago

Reputation

0

Badges 1

32 × Eureka!
0 Votes
12 Answers
165 Views
0 Votes 12 Answers 165 Views
Hi there, we have a ClearML server and i have spun up an agent using a docker image (as we have private packages on AWS CodeArtifact that need installing). I...
2 months ago
0 Votes
5 Answers
191 Views
0 Votes 5 Answers 191 Views
Hi there, I am having issues executing a pipeline on a schedule . If I run the schedule with a simple function using schedule_function , it executes on the q...
3 months ago
0 Votes
14 Answers
231 Views
0 Votes 14 Answers 231 Views
4 months ago
0 Votes
5 Answers
219 Views
0 Votes 5 Answers 219 Views
Hi there, I am running a clearml-agent and now trying to run a pipeline on a schedule. When I try run the schedule using the queue assigned to the worker I'v...
3 months ago
0 Votes
5 Answers
145 Views
0 Votes 5 Answers 145 Views
Hi, I have a worker running in services mode with --services-mode and using a Docker image. I did this as I need to run a pipeline with this agent running in...
2 months ago
0 Votes
3 Answers
138 Views
0 Votes 3 Answers 138 Views
2 months ago
0 Votes
4 Answers
3 Views
0 Votes 4 Answers 3 Views
Hi there, I want to get the URLs that are generated for the results and pipeline pages, as are logged here, as I want to use these elsewhere to reference the...
one day ago
0 Votes
13 Answers
107 Views
0 Votes 13 Answers 107 Views
How do you start an agent on the ClearML server with a specific clearml.conf file? ie. I am running something like this: clearml-agent daemon --queue forecas...
one month ago
0 Votes
2 Answers
106 Views
0 Votes 2 Answers 106 Views
How does one add_tags to a pipeline? There is this function here: None But, I cannot figure out how to use it. I would like to automatically add_tags in the ...
one month ago
0 Hi There, I Want To Get The Urls That Are Generated For The Results And Pipeline Pages, As Are Logged Here, As I Want To Use These Elsewhere To Reference The Specific Pages. How Can I Get These Generated Urls From A Currently Running Pipeline?

For reference for anyone else, this is what I did:

current_task = Task.current_task()
model_run_url = Task.get_task_output_log_web_page(
        task_id=current_task.id,
        project_id="abc")
one day ago
0 I'M Running Into A Perplexing Issue. I Have Several Agents Running On A Workstation, I Also Am Directly Running Code From The Same Workstation. There Are Several Projects On The Workstation But One Of The Projects Is Struggling With Authentication To Git

I just cleared the cache, but still getting the error:

Python executable with version '3.10' requested by the Task, not found in path, using '/usr/local/bin/python3' (v3.9.9) instead
created virtual environment CPython3.9.9.final.0-64 in 661ms
  creator CPython3Posix(dest=/root/.clearml/venvs-builds/3.9, clear=False, no_vcs_ignore=False, global=True)
  seeder FromAppData(download=False, pip=bundle, setuptools=bundle, wheel=bundle, via=copy, app_data_dir=/root/.local/share/virtualenv)
 ...
2 months ago
0 I'M Running Into A Perplexing Issue. I Have Several Agents Running On A Workstation, I Also Am Directly Running Code From The Same Workstation. There Are Several Projects On The Workstation But One Of The Projects Is Struggling With Authentication To Git

Yes, I have a log in for the clearml server and I've set up an agent using a docker image. And I've added the ssh keys here. I then start the agent with clearml-agent daemon --queue direct-relief-forecasting --cpu-only -d But, then when I try run the pipeline remotely, I'm getting the error above.

2 months ago
0 How Does One

Ah, I see, this makes sense now. Thank you!

one month ago
0 Hi There, I Am Having Issues Executing A

Schedule testing code:

# Schedule for running the pipeline daily

from clearml import Task
from clearml.automation import TaskScheduler


def simple_function():
    print('This code is executed in a background thread, '
          'on the same machine as the TaskScheduler process')
    # add some logic here
    print('done')

if __name__ == "__main__":

    scheduler = TaskScheduler(force_create_task_name='megan-test-remote-pipeline')

    scheduler.add_task(
        name='Simple Pipeli...
3 months ago
0 Hi There, I Am Running A Clearml-Agent And Now Trying To Run A Pipeline On A Schedule. When I Try Run The Schedule Using The Queue Assigned To The Worker I'Ve Got Running, I Get The Following Error About

I've tried changing the clearml.conf file to specify the python_binary with:

 python_binary: "usr/bin/python3"

But, still getting the same error.

3 months ago
0 I'M Running Into A Perplexing Issue. I Have Several Agents Running On A Workstation, I Also Am Directly Running Code From The Same Workstation. There Are Several Projects On The Workstation But One Of The Projects Is Struggling With Authentication To Git

Hi there, I am getting this exact same error. I have set force_git_ssh_protocol: true and have commented out the git_user and git_pass , but still getting the error. Is the only way to fix this to clear the cache? Do you have to do this every time then?

2 months ago
Show more results compactanswers