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
NonchalantSeaanemone34
Moderator
5 Questions, 7 Answers
  Active since 06 July 2024
  Last activity one month ago

Reputation

0

Badges 1

7 × Eureka!
0 Votes
3 Answers
80 Views
0 Votes 3 Answers 80 Views
Hi All, I have become a big fan of ClearML by now 🙂 Big shoutout to clearML team for creating such a wonderful interface. I still keep getting one question ...
one month ago
0 Votes
4 Answers
127 Views
0 Votes 4 Answers 127 Views
Hi All, It seems after sync command, finalize is not working: Please let me know if I am missing anything. op = dso.sync_folder(local_path="./data",verbose=T...
one month ago
0 Votes
3 Answers
244 Views
0 Votes 3 Answers 244 Views
Is there any known issue in pipeline decorator where lambda function call another function(say xyz ) and during pipeline execution, error is thrown that xyz ...
2 months ago
0 Votes
6 Answers
259 Views
0 Votes 6 Answers 259 Views
👋 Hi everyone! Is it possible to read data directly from server w/o using get_local_copy()?
2 months ago
0 Votes
1 Answers
211 Views
0 Votes 1 Answers 211 Views
Hi All, How we can set the openAI key in clearML and how to fetch it run time in our python code?
one month ago
0 Hi Everyone! Is It Possible To Read Data Directly From Server W/O Using Get_Local_Copy()?

Hi @<1523701205467926528:profile|AgitatedDove14>
What I mean is, dataset is loaded in server, I want to call that dataset in local PC without downloading its copy and do the analysis.

2 months ago
0 Hi All, I Have Become A Big Fan Of Clearml By Now

Thanks a lot @<1523701070390366208:profile|CostlyOstrich36> your comment boosted my confidence and i'll deep dive into clearML from now on.
What I wanted is already there in clearML, my worry was why to waste time in learning other tool if clearML is already serving the whole purpose.

May be I can start posting few enhancements which might be good for whole clearML community.

one month ago
0 Hi All, It Seems After Sync Command, Finalize Is Not Working: Please Let Me Know If I Am Missing Anything.

Hi @<1523701205467926528:profile|AgitatedDove14>
Thanks alot for pointing out "dso" variable 🙂 . I did not realize that same name i was using for create and get dataset function.
It was my mistake, i changed the variable and everything is functional as expected.

Thank you again.

one month ago
0 Is There Any Known Issue In Pipeline Decorator Where Lambda Function Call Another Function(Say

Hi @<1523701205467926528:profile|AgitatedDove14>
first of all many thanks to you for always replying promptly 🙂

Initially I thought function is defined outside that is why I was getting that error. However I am using this way and that also gives error:

@PipelineDecorator.component(return_values=["op"])
def step1():
op = "I am in step-1"
return op

@PipelineDecorator.component(return_values=["op"])
def step2(op):
return ( lambda op:step1(op))

While executing step2, I g...

2 months ago
0 Hi Everyone! Is It Possible To Read Data Directly From Server W/O Using Get_Local_Copy()?

Please see this code snippet:
reviews_dataset_path = Dataset.get(
dataset_id=config["reviews_data_file_id"],
only_completed=True,
only_published=False,
). get_local_copy()

is there a way we can still read the data without using ". get_local_copy()"

2 months ago
0 Hi Everyone! Is It Possible To Read Data Directly From Server W/O Using Get_Local_Copy()?

Thats nice to hear.
Thanks a lot @<1523701205467926528:profile|AgitatedDove14> :-)

2 months ago
0 Hi All, It Seems After Sync Command, Finalize Is Not Working: Please Let Me Know If I Am Missing Anything.

Hi @<1523701070390366208:profile|CostlyOstrich36>
here is the full code:

import os
import sys,shutil
import clearml
from clearml import Task, Dataset, Logger
from clearml import PipelineDecorator, PipelineController

project_name = "Titanic Project"
dataset_name = "titanic_data"

datasets = Dataset.list_datasets()
for dataset in datasets:
if dataset["project"] == project_name and dataset["name"] == dataset_name:
parent_datasets_id = dataset["id"]

print(parent_datasets_id)

dso...

one month ago