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
10 Questions, 42 Answers
  Active since 06 January 2024
  Last activity 5 months ago

Reputation

0

Badges 1

37 × Eureka!
0 Votes
5 Answers
677 Views
0 Votes 5 Answers 677 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...
10 months ago
0 Votes
2 Answers
554 Views
0 Votes 2 Answers 554 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 ...
8 months ago
0 Votes
14 Answers
713 Views
0 Votes 14 Answers 713 Views
11 months ago
0 Votes
13 Answers
575 Views
0 Votes 13 Answers 575 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...
8 months ago
0 Votes
5 Answers
671 Views
0 Votes 5 Answers 671 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...
9 months ago
0 Votes
4 Answers
560 Views
0 Votes 4 Answers 560 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...
7 months ago
0 Votes
6 Answers
423 Views
0 Votes 6 Answers 423 Views
5 months ago
0 Votes
12 Answers
681 Views
0 Votes 12 Answers 681 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...
9 months ago
0 Votes
5 Answers
763 Views
0 Votes 5 Answers 763 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...
11 months ago
0 Votes
3 Answers
564 Views
0 Votes 3 Answers 564 Views
9 months ago
0 Hi There, I Am Having Issues Executing A

Oh my word 🙈 Yes, I just saw this just and came back to reply on here. Thank you!

10 months ago
0 Hi, We Are Using Clearml For Our Experiment Tracking But Now Investigating Using The Pipeline Functionality As Well For Scheduling. We Also Want To Be Able To Trigger A Pipeline Run When There Is New Data In An External Database. Is This Possible? From Wh

Following up, I found this in the code on Github: None

A taskid is required though - to get this id would we run the pipeline manually as it then shows up in the Web UI and then just use the id of the task that we can get from the UI by clicking on the pipeline run info?

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

Thanks, @<1523701070390366208:profile|CostlyOstrich36> .

If I use Task.current_task() , I then get a task object back that looks like <clearml.task.Task object at 0x7f7723b90a00> . How does one get the url from this?

7 months 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")
7 months ago
0 Hi, We Are Using Clearml For Our Experiment Tracking But Now Investigating Using The Pipeline Functionality As Well For Scheduling. We Also Want To Be Able To Trigger A Pipeline Run When There Is New Data In An External Database. Is This Possible? From Wh

Thanks @<1523701070390366208:profile|CostlyOstrich36> , that does sound like an option. Can you point me to the documentation for this API call as I haven't been able to find anything?

11 months ago
0 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 Have Created The

Ok, so the image needs ssh in order to clone the repo, not just the server.

This is my dockerfile:

# Use a slim Python image as the base image
FROM python:3.9.9-slim as builder

ARG CODEARTIFACT_AUTH_TOKEN
ARG POETRY_HTTP_BASIC_ARTIFACT_USERNAME
ARG POETRY_HTTP_BASIC_ARTIFACT_PASSWORD

# Set environment variables for Poetry
ENV POETRY_HOME=/opt/poetry \
    POETRY_NO_INTERACTION=1 \
    POETRY_VIRTUALENVS_CREATE=false \
    PATH="/opt/poetry/bin:$PATH"\
    PYTHONPATH="/ml_pipeline:${...
9 months ago
0 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 Have Created The

Yes, I started the agent in docker mode with clearml-agent daemon --queue direct-relief-forecasting --docker directrelief_ml_clearml --cpu-only -d

9 months ago
0 Hi, We Are Using Clearml For Our Experiment Tracking But Now Investigating Using The Pipeline Functionality As Well For Scheduling. We Also Want To Be Able To Trigger A Pipeline Run When There Is New Data In An External Database. Is This Possible? From Wh

Hi @<1523701205467926528:profile|AgitatedDove14> , thanks for your reply. We want to use the Scheduler but to run a pipeline. Looking at this example here, it looks like it only works with tasks: None

So, in my code example above, where I have executing_pipeline as the pipeline function created with the decorator, can this be scheduled to run with the TaskScheduler , ie. used as the function...

11 months ago
0 How Does One

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

8 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.

11 months ago
Show more results compactanswers