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
FancyWhale93
Moderator
6 Questions, 8 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0

Badges 1

8 × Eureka!
0 Votes
1 Answers
572 Views
0 Votes 1 Answers 572 Views
Hello all, I want to know created time for the task, and I'm getting it by the code task.data.created . But I'm worried about using it as it is not officiall...
one year ago
0 Votes
6 Answers
589 Views
0 Votes 6 Answers 589 Views
Hello! I have a problem with tutorial client code crashes on starting pipelines remotely via pipe.start() . (have no problem running it locally with pipe.sta...
one year ago
0 Votes
1 Answers
501 Views
0 Votes 1 Answers 501 Views
Hello 🙂 I have multiple clearml server and I want to switch the sdk config( api_server , web_server etc) without modifying the ~/.clearml.conf every time. M...
one year ago
0 Votes
1 Answers
511 Views
0 Votes 1 Answers 511 Views
Hello, I'm trying to get the pipeline progress, but I can't get it properly. I've set the progress via current_task.set_progress() in the pipeline after each...
one year ago
0 Votes
4 Answers
549 Views
0 Votes 4 Answers 549 Views
Hi. Here's a question for uploading models. calling PipelineDecorator.upload_model(model_name, model_path) in a pipeline component logs clearml.model - INFO ...
one year ago
0 Votes
2 Answers
541 Views
0 Votes 2 Answers 541 Views
Hello, I'm running a ML training using PipelineDecorator . And It seems to be logging every model update (each epoch til over 100). The time for uploading th...
one year ago
0 Hi. Here'S A Question For

Great! setting the default_output_uri worked!
Thank you.

one year ago
0 Hi. Here'S A Question For

Thanks for the reply CostlyOstrich36
The local machine & agent machine has the same clearml.conf . As I sad, storing something via StorageManager has no problem on both side.
But PipelineDecorator.upload_model(model_name, model_path) doesn't work on both side.

one year ago
0 Hello

Self-answering after digging into it.
from os import environ environ['CLEARML_WEB_HOST'] = ' ' environ['CLEARML_API_HOST'] = ' ' environ['CLEARML_FILES_HOST'] = ' ` '
environ['CLEARML_API_ACCESS_KEY'] = 'access_key'
environ['CLEARML_API_SECRET_KEY'] = 'secret_key'

from clearml import Task `

one year ago
0 Hello! I Have A Problem With Tutorial Client Code Crashes On Starting Pipelines Remotely Via

Thanks for the reply. Yes, I got the point.
Still, My problem is calling pipe.start() crashes.
I want to run an API server that starts the pipeline on request, and I don't want it kills the API server.

one year ago
0 Hello! I Have A Problem With Tutorial Client Code Crashes On Starting Pipelines Remotely Via

just one more question AgitatedDove14 .
How can I do the same thing to pipe.start_locally(run_pipeline_steps_locally=False) with decorators?

one year ago
0 Hello, I'M Running A Ml Training Using

Thank you. AgitatedDove14 auto_connect_frameworks worked nicely.

one year ago
0 Hello! I Have A Problem With Tutorial Client Code Crashes On Starting Pipelines Remotely Via

Oh. If the behavior is intentional, I think I must call it via subprocess.
Thanks for the answers. AgitatedDove14

one year ago