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
MammothParrot39
Moderator
14 Questions, 34 Answers
  Active since 13 January 2023
  Last activity one year ago

Reputation

0

Badges 1

34 × Eureka!
0 Votes
1 Answers
1K Views
0 Votes 1 Answers 1K Views
Hello everyone, can you please tell me where can I set display options for clearml debug samples? I only have the last 3 iterations displayed?
one year ago
0 Votes
1 Answers
1K Views
0 Votes 1 Answers 1K Views
one year ago
0 Votes
3 Answers
1K Views
0 Votes 3 Answers 1K Views
from > allegroai > import > FrameGroup, SingleFrame The documentation lists the allegroai library. I really can't understand how can I install it) Could you ...
2 years ago
0 Votes
6 Answers
1K Views
0 Votes 6 Answers 1K Views
Hello everyone! I ran a test experiment and got an error. I'm running on an M1 mac. Worker local without GPU. Has anyone already solved this problem? ERROR: ...
2 years ago
0 Votes
2 Answers
1K Views
0 Votes 2 Answers 1K Views
Hello everyone, are there any examples of integrating Clearml and VAST.AI . The goal is to have agents that will lift containers in a vast.AI environment on ...
one year ago
0 Votes
6 Answers
1K Views
0 Votes 6 Answers 1K Views
Hello everyone! I'm uploading a dataset to the server. During dataset.finalize() I get the following error. Could you please advise what could be the problem...
one year ago
0 Votes
2 Answers
1K Views
0 Votes 2 Answers 1K Views
Is data versioning available in the accessible version of clearml? I want to create a structure like this.
2 years ago
0 Votes
5 Answers
1K Views
0 Votes 5 Answers 1K Views
one year ago
0 Votes
13 Answers
1K Views
0 Votes 13 Answers 1K Views
one year ago
0 Votes
7 Answers
1K Views
0 Votes 7 Answers 1K Views
one year ago
0 Votes
2 Answers
1K Views
0 Votes 2 Answers 1K Views
Hi everyone. How can I get metadata for datasets from an entire project? I see the opportunity to work with only one dataset
one year ago
0 Votes
8 Answers
1K Views
0 Votes 8 Answers 1K Views
one year ago
0 Votes
3 Answers
1K Views
0 Votes 3 Answers 1K Views
Hi everyone. Please tell me how I can rename the task so that it appears the same in the UI? CLF Datasets: Main - original name of task, but I tried to chang...
one year ago
0 Votes
9 Answers
1K Views
0 Votes 9 Answers 1K Views
one year ago
one year ago
0 Hi Everyone. How Can I Get Metadata For Datasets From An Entire Project? I See The Opportunity To Work With Only One Dataset

@<1523701070390366208:profile|CostlyOstrich36> I did it,, but I think its not optimal))

This is how I got information about FieldNet project:
from clearml import Task, Dataset

all_taks = Task.get_tasks()

FieldNet_tasks = {}
for task in all_taks:
name = task.name
task_id = task.task_id
if 'FieldNet' in name:
if name in FieldNet_tasks:
# get last dataset version
task_old_version = Task.get_task(task_id=FieldNet_tasks[name]).get_parameters_as_di...

one year ago
0 Hi Everyone! How Can I Create A Pipeline In Draft Mode? In Draft Mode, I Need To Install A Shell Script And Pass Additional Parameters. In Addition, I Would Like To Be Able To Remotely Copy Pipelines By Launching Pipelines With Different Parameters

I create the draft mod in the picture above by calling pipe.create_draft() But this does not start the execution of the pipeline, but immediately transfers it to draft mode
image

one year ago
Show more results compactanswers