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
ArrogantButterfly10
Moderator
5 Questions, 27 Answers
  Active since 29 June 2023
  Last activity 8 months ago

Reputation

0

Badges 1

26 × Eureka!
0 Votes
16 Answers
582 Views
0 Votes 16 Answers 582 Views
10 months ago
0 Votes
2 Answers
459 Views
0 Votes 2 Answers 459 Views
Hey, I have one query. model = Model.query_models(project_name = global_config.PROJECT_NAME, model_name="model training",max_results=1) is there any way it c...
8 months ago
0 Votes
10 Answers
524 Views
0 Votes 10 Answers 524 Views
Hi, While running a pipeline by task, the pipeline is stuck in 1st stage only. Console is showing Configurations: OrderedDict() Overrides: OrderedDict() and ...
10 months ago
0 Votes
4 Answers
531 Views
0 Votes 4 Answers 531 Views
While running a pipeline by decorator, I am getting this error docker: Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daem...
10 months ago
0 Votes
12 Answers
569 Views
0 Votes 12 Answers 569 Views
Hi, I have one doubt related to pipeline I have one pipeline with eg 3 tasks, preprocess, train and test Now i want to clone the pipeline and change the hype...
9 months ago
10 months ago
0 Hey, I Have One Query.

Also it is returning empty list if I am using tags
model = Model.query_models(project_name = global_config.PROJECT_NAME, model_name="model training", tags = ['$all','best'])

8 months ago
0 Hi, While Running A Pipeline By Task, The Pipeline Is Stuck In 1St Stage Only. Console Is Showing

[1m[[0m[34;49mnotice[0m[1;39;49m][0m[39;49m To update, run: [0m[32;49mpip install --upgrade pip[0m

1687953244763 si-sajalv:0 ERROR User aborted: stopping task (3)

1687953245766 si-sajalv:0 DEBUG Current configuration (clearml_agent v1.5.2, location: /tmp/clearml.conf):
----------------------
sdk.storage.cache.default_base_dir = /clearml_agent_cache
sdk.storage.cache.size.min_free_bytes = 10GB
sdk.storage.direct_access.0.url = file://*
`sdk.metrics.file_history_si...

10 months ago
0 Hi, While Running A Pipeline By Task, The Pipeline Is Stuck In 1St Stage Only. Console Is Showing

I ll explain you what happened, I ran " None " this code, so all the steps of pipeline ran

so the individual part of pipeline ran, but in dashboard when I am seeing the pipeline it is running continuously and not ending even after all the tasks are completed.
the above part is from the console of the pipeline

10 months ago
0 Hi, While Running A Pipeline By Task, The Pipeline Is Stuck In 1St Stage Only. Console Is Showing

Environment setup completed successfully
Starting Task Execution:
2023-06-28 12:31:52
ClearML results page: None
2023-06-28 12:31:58
ClearML pipeline page: None
2023-06-28 12:32:05
Launching the next 1 steps
`Launching step [stag...

10 months ago
0 Hi, While Running A Pipeline By Task, The Pipeline Is Stuck In 1St Stage Only. Console Is Showing

Hey, I seem to have resolve this issue, but stuck in another.
Apparently even after all the tasks got completed of a pipeline, the pipeline is still running, I had to abort it manually. Am I missing any code to stop it after all tasks execution?

10 months ago
0 Hi I Am Having Issue With Pipeline. Even My Every Task Of Pipeline Is Completed, My Core Pipeline Controller Is Still Running. I Have Added Pipe.Wait() And Pipe.Stop() As Well. Attached Pic Shows The Pipeline In Running State, And Tasks In Completed Stat

Hey @<1537605940121964544:profile|EnthusiasticShrimp49> I updated clearml but now the issue is my pipeline is stuck here.
Previously it was working fine till the above mentioned issue and I made no change except the mentioned.
image

10 months ago
0 Hi, I Have One Doubt Related To Pipeline I Have One Pipeline With Eg 3 Tasks, Preprocess, Train And Test Now I Want To Clone The Pipeline And Change The Hyperparameters Of Train Task, Is It Possible? If So, How??

@<1523701205467926528:profile|AgitatedDove14>
I am using pipeline by task and using pipe.add_parameter method to add the parameter through ui

pipe.add_parameter('random_state',2024) #model training
pipe.add_parameter('epochs',10)
pipe.add_parameter('learning_rate',0.001)

and then overriding the parameters using parameter_overide

pipe.add_step(
name='model_training',
parents=['preprocess_data'],
base_task_project=global_config.PROJECT_NAME,
` bas...

9 months ago
0 Hi, While Running A Pipeline By Task, The Pipeline Is Stuck In 1St Stage Only. Console Is Showing

It was stuck here. I had to abort manually. All the tasks completed though.

10 months ago
0 Hi, I Have One Doubt Related To Pipeline I Have One Pipeline With Eg 3 Tasks, Preprocess, Train And Test Now I Want To Clone The Pipeline And Change The Hyperparameters Of Train Task, Is It Possible? If So, How??

@<1523701205467926528:profile|AgitatedDove14>
Clearml version - 1.12.1

In the pipeline example None this specifically, at line 83
parameter_override={'General/num_boost_round': 250,
'General/test_size': 0.5,
'General/random_state': random_state}
these are fixed and cannot be changed by user when the pipeline is cloned, I am trying to make thes...

9 months ago
0 Hi, I Have One Doubt Related To Pipeline I Have One Pipeline With Eg 3 Tasks, Preprocess, Train And Test Now I Want To Clone The Pipeline And Change The Hyperparameters Of Train Task, Is It Possible? If So, How??

It resolved.
I was doing 2 things wrong, defining params before task.init and while using task.connect(params) I was naming it and trying to set params using General/param_name

thanks for the support

9 months ago
0 While Running A Pipeline By Decorator, I Am Getting This Error

Noo, in general when I am running this command clearml-agent daemon --queue services --docker clearml-pipeline:0.6 everything is expected to happen inside docker container. But what is happening is when I am reaching my task eg task1, inside pipeline task1 console is giving me this error. Which means it is expecting docker inside the container in which it is already running.

Hope I am clear now

10 months ago
0 Hi I Am Having Issue With Pipeline. Even My Every Task Of Pipeline Is Completed, My Core Pipeline Controller Is Still Running. I Have Added Pipe.Wait() And Pipe.Stop() As Well. Attached Pic Shows The Pipeline In Running State, And Tasks In Completed Stat

from clearml import Task
from clearml.automation import PipelineController
pipe = PipelineController(name='PIPE_TEST_3',project='PIPE_TEST_3',version="0.0.1",add_pipeline_tags=False)

pipe.add_parameter("url",
" None ",
"dataset_url"
)

pipe.set_default_execution_queue('services')

`pipe.add_step(name="stage_da...

10 months ago