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
TrickySheep9
Moderator
71 Questions, 428 Answers
  Active since 10 January 2023
  Last activity 8 months ago

Reputation

0

Badges 1

383 × Eureka!
0 Votes
8 Answers
1K Views
0 Votes 8 Answers 1K Views
Is it not possible to add artifacts to a completed task?
3 years ago
0 Votes
2 Answers
1K Views
0 Votes 2 Answers 1K Views
When a transitive dependency is optional, how do we make sure the task detects it? In my case, I have a task that reads excel file using pandas which needs x...
3 years ago
0 Votes
14 Answers
1K Views
0 Votes 14 Answers 1K Views
Hi folks any info on when the helm chart will be updated for 1.0.1 ?
3 years ago
0 Votes
3 Answers
948 Views
0 Votes 3 Answers 948 Views
Any specific reason for modelling experiments as separate tasks rather than a single entity with multiple runs?
3 years ago
0 Votes
27 Answers
1K Views
0 Votes 27 Answers 1K Views
Playing around with HPO for first time. I am giving this as hyperparameter: DiscreteParameterRange("General/num_iterations", values=[10, 20, 30]), Is it expe...
3 years ago
0 Votes
13 Answers
1K Views
0 Votes 13 Answers 1K Views
I am not familiar with pytorch, but is it expected that so many “models” are created? These are being repeated as well for a single task (this is training a ...
3 years ago
0 Votes
4 Answers
1K Views
0 Votes 4 Answers 1K Views
I might be missing something, but is there no way to clear all tags or remove a tag in a Task? I only see a add_tags()
3 years ago
0 Votes
5 Answers
1K Views
0 Votes 5 Answers 1K Views
Seeing this error when trying to run a Monitor in services queue (agentservices running on Kubernetes): Am I missing some configuration I need to add over de...
3 years ago
0 Votes
29 Answers
980 Views
0 Votes 29 Answers 980 Views
Getting this error at task.execute_remotely()
3 years ago
0 Votes
30 Answers
988 Views
0 Votes 30 Answers 988 Views
Is it possible to add a callback for a pipeline from a step?
3 years ago
0 Votes
11 Answers
1K Views
0 Votes 11 Answers 1K Views
If i have a dataset and i process it and I want the processed data as another dataset, is parent the right approach?
3 years ago
0 Votes
18 Answers
1K Views
0 Votes 18 Answers 1K Views
Does clearml-session work in a Kubernetes environment?
3 years ago
0 Votes
15 Answers
1K Views
0 Votes 15 Answers 1K Views
Anyone doing sagemaker with Clearml - something like the k8s glue but the tasks are pulled into sagemaker training jobs
3 years ago
0 Votes
4 Answers
980 Views
0 Votes 4 Answers 980 Views
When I do Task.init() and then a execute_remotely(), the task is being Aborted rather than be in Draft. Am I missing something?
3 years ago
0 Votes
2 Answers
1K Views
0 Votes 2 Answers 1K Views
3 years ago
0 Votes
12 Answers
1K Views
0 Votes 12 Answers 1K Views
I am seeing that some steps in a pipeline are being skipped. Like for example, in a pipeline with 4 steps, it’s directly starting at step 3. Is there some re...
3 years ago
0 Votes
30 Answers
1K Views
0 Votes 30 Answers 1K Views
Sorry folks too many questions - if i have a project (and i set the output uri in it while creating, to a s3 folder) how can i ensure that a experiment (task...
3 years ago
0 Votes
3 Answers
1K Views
0 Votes 3 Answers 1K Views
Sorry if this is addressed in docs somewhere - Does an agent map to one worker (1:1) all the time? Can I have multiple workers in an agent? Does docker mode ...
3 years ago
0 Votes
17 Answers
1K Views
0 Votes 17 Answers 1K Views
Is it possible to increase the polling interval for k8s glue? Currently it is 5 seconds I believe. Would adding an argument for it help? Can do a PR if so
3 years ago
0 Votes
17 Answers
978 Views
0 Votes 17 Answers 978 Views
Is it possible to schedule pipelines on events like dataset update?
3 years ago
0 Votes
7 Answers
997 Views
0 Votes 7 Answers 997 Views
My nth question for the day 🙂 What’s the general pattern for running a pipeline - train model, evaluate metrics and publish the model if satisfactory (based...
3 years ago
0 Votes
9 Answers
942 Views
0 Votes 9 Answers 942 Views
Is there an efficient way to query ALL unique models (ie excluding versions) in a project?
3 years ago
0 Votes
9 Answers
985 Views
0 Votes 9 Answers 985 Views
When using docker mode (and specifically k8s glue), what are the options for caching? One option is definitely having a base image that has the things needed...
3 years ago
0 Votes
7 Answers
1K Views
0 Votes 7 Answers 1K Views
How do people generally handle moving from experimental mode with notebooks and then running pipelines for production training and beyond?
3 years ago
0 Votes
1 Answers
1K Views
0 Votes 1 Answers 1K Views
Currently clearml-agent in services-mode supports cpu only configuration. Any particular reason for this limitation? Any inputs on what’s needed to do this i...
3 years ago
0 Votes
3 Answers
1K Views
0 Votes 3 Answers 1K Views
logger.report_table with a pandas df, that used to work fine, is suddenly not working - no table in plots but nothing in log (same code otherwise). Seen this...
3 years ago
0 Votes
6 Answers
956 Views
0 Votes 6 Answers 956 Views
Off topic - Is there a slack / discord community for general ML discussions?
3 years ago
0 Votes
7 Answers
1K Views
0 Votes 7 Answers 1K Views
3 years ago
0 Votes
12 Answers
1K Views
0 Votes 12 Answers 1K Views
This verify param to decode of pyjwt seems to be removed and in a fresh intallation we are seeing this error: File "/usr/local/lib/python3.7/site-packages/cl...
3 years ago
0 Votes
10 Answers
948 Views
0 Votes 10 Answers 948 Views
Does k8s glue support running service agent? Slightly confused here
3 years ago
Show more results questions
0 Off Topic - Is There A Slack / Discord Community For General Ml Discussions?

Yeah please if you can share some general active ones to discuss both algos and engineering side

3 years ago
3 years ago
0 Can Someone Help Me With Deploying This Example Model (From Triton Inference Server) Deployed In Clearml-Serving? Too Many Random Errors For Me To Figure It Out

Initially it was complaining about it, but then when I did the connect_configuration it started working

3 years ago
0 Can Someone Help Me With Deploying This Example Model (From Triton Inference Server) Deployed In Clearml-Serving? Too Many Random Errors For Me To Figure It Out

The agent ip? Generally what’s the expected pattern to deploy and scale this for multiple models?

3 years ago
3 years ago
0 Can Someone Help Me With Deploying This Example Model (From Triton Inference Server) Deployed In Clearml-Serving? Too Many Random Errors For Me To Figure It Out

That makes sense - one part I am confused on is - The Triton engine container hosts all the models right? Do we launch multiple gorups of these in different projects?

3 years ago
0 Can Someone Help Me With Deploying This Example Model (From Triton Inference Server) Deployed In Clearml-Serving? Too Many Random Errors For Me To Figure It Out

I used .update_weights(path) with path being the model dir containing the model.py annd the config.pbtxt. Should I use update_weights_package ?

3 years ago
0 Can Someone Help Me With Deploying This Example Model (From Triton Inference Server) Deployed In Clearml-Serving? Too Many Random Errors For Me To Figure It Out

Got the engine running.

curl <serving-engine-ip>:8000/v2/models/keras_mnist/versions/1What’s the serving-engine-ip supposed to be?

3 years ago
0 Can Someone Help Me With Deploying This Example Model (From Triton Inference Server) Deployed In Clearml-Serving? Too Many Random Errors For Me To Figure It Out

Yes, I have no experience with triton does it do lazy loading? Was wondering how it can handle 10s, 100s of models. If we load balance across a set of these engine containers with say 100 models and all of these models get traffic but distribution is not even, each of those engine container will load all those 100 models?

3 years ago
3 years ago
0 Is It Possible To Add A Callback For A Pipeline From A Step?

I am essentially creating a EphemeralDataset abstraction and creating controlled lifecycle for it such that the data is removed after a day in experiments. Additionally and optionally, data created during a step in a pipeline can be cleared once the pipeline completes

3 years ago
0 Is It Possible To Add A Callback For A Pipeline From A Step?

So General would have created a General instead of Args?

3 years ago
0 Is It Possible To Add A Callback For A Pipeline From A Step?

What happens if I do blah/dataset_url ?

3 years ago
0 Is It Possible To Add A Callback For A Pipeline From A Step?

Yes, for datasets where we need GDPR compliance

3 years ago
Show more results compactanswers