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
DepravedDolphin12
Moderator
5 Questions, 13 Answers
  Active since 06 July 2023
  Last activity one year ago

Reputation

0

Badges 1

13 × Eureka!
0 Votes
2 Answers
612 Views
0 Votes 2 Answers 612 Views
Hi all, How can we clear the local dataset cache in ClearML?
one year ago
0 Votes
16 Answers
704 Views
0 Votes 16 Answers 704 Views
Hi all, Is there anyway to get the id of the pipeline using pipeline name? I need the id of the pipeline so that I can schedule the pipeline to run via TaskS...
one year ago
0 Votes
2 Answers
712 Views
0 Votes 2 Answers 712 Views
Hi all, I'm trying to setup a pipeline based on the asteroid_example( None ) by @<1523701118159294464:profile|ExasperatedCrab78> . The tasks run fine when ex...
one year ago
0 Votes
3 Answers
694 Views
0 Votes 3 Answers 694 Views
Hey all, Has anyone faced this issue with dataset.get_local_copy() ? IsADirectoryError: [Errno 21] Is a directory:
one year ago
0 Votes
4 Answers
639 Views
0 Votes 4 Answers 639 Views
Hi all, I'm trying to clone and run the preprocessing task from urbansounds8k example project. The download data task worked but getting this error in prepro...
one year ago
0 Hi All, Is There Anyway To Get The Id Of The Pipeline Using Pipeline Name? I Need The Id Of The Pipeline So That I Can Schedule The Pipeline To Run Via

Hi @<1523701205467926528:profile|AgitatedDove14> , It works if I dont specify the project name and just give the task name. So I modified the above code a bit and now I'm able to get the id of the latest pipeline run.

task_to_schedule: Task = Task.get_task(task_id='b0732c334115432f8dc0cec0dbfdbdcb')
print(task_to_schedule.get_project_name())
# Output: Project Team NASA/.pipelines/NASA Pipeline
print(task_to_schedule.name)
# Output: NASA Pipeline #11


# task: Task = Task.get_task(proje...
one year ago
0 Hey All, Has Anyone Faced This Issue With

@<1523701070390366208:profile|CostlyOstrich36> I believe it is something to do with local cache, I changed the cache location to a different directory in clearml.conf and the issue is resolved.

one year ago
0 Hi All, Is There Anyway To Get The Id Of The Pipeline Using Pipeline Name? I Need The Id Of The Pipeline So That I Can Schedule The Pipeline To Run Via

Hey @<1523701205467926528:profile|AgitatedDove14> I need to access it programmatically. Just like we get the task id by Task.get_task().id

one year ago
0 Hi All, I'M Trying To Setup A Pipeline Based On The Asteroid_Example(

Thanks for your response @<1523701070390366208:profile|CostlyOstrich36> !
Please find the full log here: None

one year ago
0 Hi All, Is There Anyway To Get The Id Of The Pipeline Using Pipeline Name? I Need The Id Of The Pipeline So That I Can Schedule The Pipeline To Run Via

Hi @<1523701205467926528:profile|AgitatedDove14> , The code returns the project, but if I use the same project in get_task it's throwing ValueError

task_to_schedule: Task = Task.get_task(task_id='b0732c334115432f8dc0cec0dbfdbdcb')
print(task_to_schedule.get_project_name())
# Output: Project Team NASA/.pipelines/NASA Pipeline
print(task_to_schedule.name)
# Output: NASA Pipeline #11


task: Task = Task.get_task(project_name=task_to_schedule.get_project_name(),
                   ...
one year ago
0 Hi All, Is There Anyway To Get The Id Of The Pipeline Using Pipeline Name? I Need The Id Of The Pipeline So That I Can Schedule The Pipeline To Run Via

But this is a different script for TaskScheduler , something like below:

scheduler = TaskScheduler(...)

task_to_schedule = Task.get_task(project_name='MyProject',
                                  task_name='MyTask')
scheduler.add_task(schedule_task_id=task_to_schedule.id, ...)

# Do we have something similar to this? Like below
# pipeline_to_schedule = Task.get_task(project_name='MyProject',
                                #   task_name='MyPipeline')

# scheduler.add_task(schedule_...
one year ago
0 Hi All, I'M Trying To Clone And Run The

Hey @<1523701435869433856:profile|SmugDolphin23> ,
Thanks for your response !
Code : line 110 in None

ClearML version: I'm using app.clear.ml itself. And my agent version is clearml-agent 1.5.2

one year ago
0 Hi All, How Can We Clear The Local Dataset Cache In Clearml?

Thanks for your response @<1523701070390366208:profile|CostlyOstrich36> 🙂

I thought about doing the same but clearml setup is done using root privileges so even cache folder is generated with root privilege. So I was just wondering if clearml CLI exposes any API to refresh cache.

one year ago
0 Hi All, Is There Anyway To Get The Id Of The Pipeline Using Pipeline Name? I Need The Id Of The Pipeline So That I Can Schedule The Pipeline To Run Via

Same error

task_to_schedule: Task = Task.get_task(task_id='b0732c334115432f8dc0cec0dbfdbdcb')
print(task_to_schedule.get_project_name())
# Output: Project Team NASA/.pipelines/NASA Pipeline
print(task_to_schedule.name)
# Output: NASA Pipeline #11


task: Task = Task.get_task(project_name=task_to_schedule.get_project_name(),
                           task_name=task_to_schedule.name,
                           task_filter={"search_hidden": True})
print(task.id)
# Error: ValueError: No pr...
one year ago
0 Hi All, Is There Anyway To Get The Id Of The Pipeline Using Pipeline Name? I Need The Id Of The Pipeline So That I Can Schedule The Pipeline To Run Via

why aren't you coping the Pipeline ID from the UI? --> I have tried this and it works but let's say if I updated the pipeline code, then will have to rerun the pipeline code then manually get the id and update the task. But if there is way in which I can directly fetch the id using pipeline name, it'll allow me to get the latest pipeline to be scheduled without manual intervention. Please correct if my understanding is wrong.

task_to_schedule = Task.get_task(project_name='MyProject/.p...
one year ago
0 Hi All, Is There Anyway To Get The Id Of The Pipeline Using Pipeline Name? I Need The Id Of The Pipeline So That I Can Schedule The Pipeline To Run Via

@<1523701087100473344:profile|SuccessfulKoala55> @<1523701205467926528:profile|AgitatedDove14> Same results, it's not able to find the Project

tasks = Task.get_tasks(project_name=task_to_schedule.get_project_name(),
                           task_name=task_to_schedule.name,
                           task_filter={"search_hidden": True})
print([task.name for task in tasks])
# Output: 
# 2023-07-09 11:08:11,693 - clearml - WARNING - No projects were found with name(s): Project Team NA...
one year ago
0 Hi All, I'M Trying To Clone And Run The

Example Project: None
Docs where it is mentioned about accessing artifacts: None

one year ago