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
WackyRabbit7
Moderator
73 Questions, 550 Answers
  Active since 10 January 2023
  Last activity 5 months ago

Reputation

0

Badges 1

533 × Eureka!
0 Votes
7 Answers
892 Views
0 Votes 7 Answers 892 Views
How would I go downloading a table that I have reported using logger.report_table ? In the UI downloading it as a JSON downloads it a in a weird format which...
3 years ago
0 Votes
16 Answers
820 Views
0 Votes 16 Answers 820 Views
How should I edit the Cleanup Service so I can filter deleted tasks on project / task name? https://github.com/allegroai/clearml/blob/master/examples/service...
2 years ago
0 Votes
8 Answers
860 Views
0 Votes 8 Answers 860 Views
I have a task which I reported a table to - how do I access this table through code? The clearml Task object attribute "artifacts" is empty
2 years ago
0 Votes
11 Answers
812 Views
0 Votes 11 Answers 812 Views
Is it possible to view the actual code of a task? As in the script that created the task?
3 years ago
0 Votes
3 Answers
905 Views
0 Votes 3 Answers 905 Views
Any documentation (code examples) on how to log custom plotly plots?
3 years ago
0 Votes
31 Answers
17K Views
0 Votes 31 Answers 17K Views
Unrelated problem (or is it?) the ClearML's built in Cleanup Service fails clearml.utilities.pyhocon.exceptions.ConfigMissingException: 'No configuration set...
2 years ago
0 Votes
2 Answers
908 Views
0 Votes 2 Answers 908 Views
I have a production inference pipeline which I want to continuously test on my Github to make sure it doesn't break as we move forward. The ideal scenario fo...
2 years ago
0 Votes
11 Answers
992 Views
0 Votes 11 Answers 992 Views
What is the correct way of setting environment variables for agents which DON'T RUN in docker mode? Do they simply inherit from the environment they were exe...
2 years ago
0 Votes
31 Answers
11K Views
0 Votes 31 Answers 11K Views
In PipelineV2, is it possible to register artifacts to the pipeline task? I see there is a private variable ._task but not sure its the right way to go as it...
2 years ago
0 Votes
33 Answers
12K Views
0 Votes 33 Answers 12K Views
Question about the auto scaling service Under extra_trains_conf when I supply a configuration file path, should it be a path on the trains server running the...
3 years ago
0 Votes
9 Answers
892 Views
0 Votes 9 Answers 892 Views
Where can I find a more extensive documentation of serving? I'm looking for How to write pre + post processing callbacks for inference and statistics Manual ...
2 years ago
0 Votes
32 Answers
11K Views
0 Votes 32 Answers 11K Views
Very weird error, trying to run an experiment through an agent in docker mode, and I get this error docker: Error response from daemon: create /home/elior/De...
3 years ago
0 Votes
32 Answers
13K Views
0 Votes 32 Answers 13K Views
I have a set up an agent, on a GPU machine, and spun up the daemon in docker moder, and specifically specified a GPU that it will work with. The image is oka...
4 years ago
Show more results questions
3 years ago
0 Using

⬆ CostlyOstrich36

2 years ago
0 Got Something Very Wrong With My Pipeline, The Pipeline Plot Shows It Has An Experiment

I don't htink I can, this is private IP and to create a dummy example of a pipeline and execution will take me more time than I can dedicate to this

2 years ago
0 Question About Out-Of-Python Dependencies. For Example Nltk Requires

I believe that is why MetaFlow chose conda as their package manager, because it can take care of these kind of dependencies (even though I hate conda 😄 )

3 years ago
0 Following The Instructions For Local Trains Deployment On Linux (

but shouldn't the :lastest make it redownload the right image?

3 years ago
0 We Are Having The Same Issue As

For me a simple restart worked

2 years ago
0 How Come

Yes very much

2 years ago
0 How Come

AgitatedDove14

2 years ago
0 Question About Out-Of-Python Dependencies. For Example Nltk Requires

UptightCoyote42 - How are these images avaialble to all agents? Do you host them on Docker hub?

3 years ago
0 How Come

we did execute locally

2 years ago
0 Question About The Auto Scaling Service Under

Yep, the warnings no longer appear

3 years ago
0 Moreover, When I Go To The Queue Page, I See The Queue Is Empty, But When I'M On The Queued Task'S Page I Can See It Is Enqueued To Right Right Queue... So The Task Says It Is In The Queue, But The Queue Says It Is Empty

` # define pipeline
pipe = clearml.PipelineController(
name=TASK_NAME,
project=PROJECT_NAME,
version='0.0.1',
add_pipeline_tags=False,
)
pipe.set_default_execution_queue('default')

Adding steps

pipe.add_step(name=f'{start_date_train}_{end_date_train}_choose_best',
base_task_project=CHOOSE_PROJECT_NAME,
base_task_name=CHOOSE_TASK_NAME,
parameter_override=params_override,
...

2 years ago
0 Executed From Within A Pipelinecontroller Task, What Possible Reason Does

Okay so at the first part of the code, we define some kind of callback that we add to our steps, so later we can collect them and attach the results to the pipeline task. It looks something like this

` class MedianPredictionCollector:
_tasks_to_collect = list()

@classmethod
def collect_description_tables(cls, pipeline: clearml.PipelineController, node: clearml.PipelineController.Node):

    # Collect tasks
    cls._tasks_to_collect.append(node.executed)

@classmethod...
2 years ago
0 We Are Having The Same Issue As

Is tehre anything specific about the logs we're looking for? Because if I just dumop them it will take me a while to see no sensitive data and naming is there

2 years ago
3 years ago
0 I'M Running

Why is that an issue?

2 years ago
0 I Have A Data Scientist Constantly Having The Same Problem. If She Did Not Push His Latest Changes To Git, She Gets The Following Error

so basically - if she has new commits locally that werent pushed it won't work

But if she did not commit her latest changes, and now she enqueues - it will work?

3 years ago
0 Hi There Everyone! We'Re Working On Some Better Ux For Triggering And Scheduling Functions And Would Love To Pick Your Brains

If this includes scheduling through pipelines, in my opinion there should be an option to execute a pipeline without an agent. Sometimes for development I just want to execute a pipeline on my local machine just as I would a task...

2 years ago
Show more results compactanswers