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
SmugSnake6
Moderator
12 Questions, 54 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0

Badges 1

46 × Eureka!
0 Votes
5 Answers
892 Views
0 Votes 5 Answers 892 Views
Hey guys! I have multiple Task.init in my code, but they all report to the same task. For each one I used a different task_name and set reuse_last_task_id to...
one year ago
0 Votes
7 Answers
923 Views
0 Votes 7 Answers 923 Views
In pipelines I've found that empty lists don't work as I would expect them to work. For example, this will work fine: from clearml.automation.controller impo...
one year ago
0 Votes
6 Answers
821 Views
0 Votes 6 Answers 821 Views
Hello! Is there a way to avoid or accelerate Generating SHA2 hash for ... files when uploading datasets?
one year ago
0 Votes
8 Answers
901 Views
0 Votes 8 Answers 901 Views
Hey guys! I'm trying to retrieve a tile of an image ( ndarray ) in my pipeline with: my_tile = image[ tile[0]:tile[1], tile[2]:tile[3], ]But the pipeline rep...
one year ago
0 Votes
3 Answers
843 Views
0 Votes 3 Answers 843 Views
Hey everyone! Is there a way to delete the example projects? I just installed ClearML server using the docker image. Thanks
2 years ago
0 Votes
2 Answers
791 Views
0 Votes 2 Answers 791 Views
Hi all! I've noticed that sometimes my program finishes before all the reporting is done and I have to add a time.sleep(...) to make sure to see them in the ...
one year ago
0 Votes
5 Answers
823 Views
0 Votes 5 Answers 823 Views
Hey guys! Anyone knows if you can upload an OutputModel to the ClearML server? I see that https://clear.ml/docs/latest/docs/references/sdk/model_outputmodel/...
one year ago
0 Votes
23 Answers
936 Views
0 Votes 23 Answers 936 Views
For some reason I can't delete a pipeline projet, the deletion is running indefinitely. Is there a way to force the deletion of a project via the APIClient?
one year ago
0 Votes
11 Answers
881 Views
0 Votes 11 Answers 881 Views
Hello, we're getting a strange error while training YoloV5: Retrying (Retry(total=237, connect=237, read=240, redirect=240, status=240)) after connection bro...
one year ago
0 Votes
7 Answers
978 Views
0 Votes 7 Answers 978 Views
Hey guys! Has anyone ever seen an error like this? I'm using my code in a clearml-agent and it looks like something is breaking with click bindings. Tracebac...
2 years ago
0 Votes
3 Answers
940 Views
0 Votes 3 Answers 940 Views
Hey guys! I'm saving my datasets on our self-hosted ClearML file-server. However, when deleting them through the UI, it doesn't delete them on the server. I ...
one year ago
0 Votes
11 Answers
975 Views
0 Votes 11 Answers 975 Views
Hey guys, I've got this weird issue in my pipeline! Any ideas of what I could've missed? My parameter becomes None when I pass it to my component 😕 @Pipelin...
one year ago
one year ago
0 Hey Guys! I'M Trying To Retrieve A Tile Of An Image (

This crashes with:
File "/tmp/tmpa5l_cvuv.py", line 8 crop = image[(0:50, 0:50)] ^ SyntaxError: invalid syntax

one year ago
0 Hi All! I'Ve Noticed That Sometimes My Program Finishes Before All The Reporting Is Done And I Have To Add A

I wasn't able to reproduce it with a simple piece of code, I'll try to see later if I can. But what I've seen is that I was logging too many images and it was somehow missing my last reports. With fewer image logs it seems like it's working normally

one year ago
0 Hello! Is There A Way To Avoid Or Accelerate

From what I could see, generating SHA2:
i7-10700K: ~ 10 - 15 minutes Xeon E3-1240: 4 - 5 hours!Then in both cases I still have about an 1h30 to upload the images to the fileserver. Which I also find quite a bit slow, but the ClearML fileserver is on my old Xeon. I plan to upgrade my server and to test it again

one year ago
0 Hey Guys! Anyone Knows If You Can Upload An

Thanks! Seems to be working just fine

one year ago
0 Hey Having An Issue Passing Parameters To A Component In A Pipeline, The Parameters Appear To Be

From what I've seen, another fix would be to pass a default value to your parameters, for example: def executing_pipeline(start_date=0, end_date=0):

one year ago
0 Hey Everyone! Is There A Way To Delete The Example Projects? I Just Installed Clearml Server Using The Docker Image. Thanks

Thanks for the response, I don't have any specific reason. I just wanted to have a something cleaner. We don't have much projects yet, so we just get these examples in the way. But it's not bad, I was just wondering. I'll remember to check for the environment variables for our next ClearML install. Thanks anyways, I won't take the trouble of removing them then

2 years ago
0 Hey Guys! I Have Multiple

Alright! I'll take a look at it. It's also nice to know that pipelines will take care of it. Thanks!

one year ago
0 Hello, We'Re Getting A Strange Error While Training Yolov5:

Not really, it's an Ubuntu desktop machine that I'm just updating times to times. I've also got a few pipelines running during my trainings. Do you know any tools that I could use to analyze network errors?

one year ago
one year ago
0 Hey Guys, I'Ve Got This Weird Issue In My Pipeline! Any Ideas Of What I Could'Ve Missed? My Parameter Becomes

But this works strangely:
` @PipelineDecorator.component(cache=False, execution_queue="default")
def get_param():
return 'hello'

@PipelineDecorator.component(cache=False, execution_queue="default")
def get_best_model(task_ids):
import ...

print('task_ids:', task_ids, type(task_ids)) # task_ids: None <class 'NoneType'>

...

@PipelineDecorator.pipeline(
name='...',
project='...',
version='0.1'
)
def pipeline_entry(task_ids: List[str], ...):
print(task_ids, typ...

one year ago
0 Hey Having An Issue Passing Parameters To A Component In A Pipeline, The Parameters Appear To Be

I had the same issue, they fixed it in 1.7.2rc1 I think. You can try pip install clearml==1.7.2rc1

one year ago
0 Hey Guys! I Have Multiple

Hmm okay, I'm doing a hyper parameter search by launching multiple processes of my train function. I've got a main task runing the search to log the final results, and a bunch of training tasks running in parallel. It would've been nice to be able to come back to each one individual training task, but I guess I'll do without

one year ago
0 For Some Reason I Can'T Delete A Pipeline Projet, The Deletion Is Running Indefinitely. Is There A Way To Force The Deletion Of A Project Via The Apiclient?

But I've got /opt/clearml/data/fileserver/examples/.pipelines/custom pipeline logic which has a bunch of folders of old tasks

one year ago
0 Hey Guys! Anyone Knows If You Can Upload An

I'm using a self hosted server

one year ago
0 Hey Having An Issue Passing Parameters To A Component In A Pipeline, The Parameters Appear To Be

Apparently, the issue is that it will always pass None if there's no default value

one year ago
0 Hey Guys, I'Ve Got This Weird Issue In My Pipeline! Any Ideas Of What I Could'Ve Missed? My Parameter Becomes

CostlyOstrich36 This looks like a bug? Here's a simpler version of it and what I'm getting:
` from clearml.automation.controller import PipelineDecorator

@PipelineDecorator.component(cache=False)
def step_one(my_arg):
print('step_one/my_arg:', my_arg) # step_one/my_arg: None
# I should not get None here! At least that's what I'm expecting

@PipelineDecorator.pipeline(name='custom pipeline logic', project='examples', version='0.0.5')
def executing_pipeline(my_arg):
print('my_ar...

one year ago
0 Hello! Is There A Way To Avoid Or Accelerate

Sooo for the SHA2 generation, I've tested 2 very different CPUs, and it makes a HUGE difference 😅 I probably have to upgrade my server

one year ago
0 For Some Reason I Can'T Delete A Pipeline Projet, The Deletion Is Running Indefinitely. Is There A Way To Force The Deletion Of A Project Via The Apiclient?

It's a bit strange, my pipeline is called "custom pipeline logic" (which I renamed to "blop" later). This api_client.projects.get_all(name=exact_match_regex("pipeline_project/.pipelines/blop"), search_hidden=True) returns nothing and this api_client.projects.get_all(name=exact_match_regex("pipeline_project/.pipelines/custom pipeline logic"), search_hidden=True) returns nothing either

one year ago
0 Hey Guys! I'M Trying To Retrieve A Tile Of An Image (

This however works fine:
` Python 3.10.6 (main, Aug 10 2022, 11:40:04) [GCC 11.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.

import numpy as np
a = np.ones((100, 100, 3))
a[0:50, 0:50].shape
(50, 50, 3)
`

one year ago
0 For Some Reason I Can'T Delete A Pipeline Projet, The Deletion Is Running Indefinitely. Is There A Way To Force The Deletion Of A Project Via The Apiclient?

CostlyOstrich36 Here's what I get:
` ERROR TypeError: Unexpected type 'undefined' in select operator, expected 'string' or 'function'
rn ngrx-store.mjs:550
select ngrx-store.mjs:507
deleteEntitiesEffect base-delete-dialog.effects.ts:134
RxJS 13
stateSubscription ngrx-store.mjs:472
RxJS 24
next ngrx-store.mjs:206
dispatch ngrx-store.mjs:515
delete common-delete-dialog.component.ts:112
O common-delete-dialog.component.html:36
Angular 11
core.mjs:7640...

one year ago
0 Hello, We'Re Getting A Strange Error While Training Yolov5:

No sorry, I found the where the logs are. And it doesn't seem to have any errors in the logs:
` [2022-10-14 17:22:50,771] [9] [INFO] [clearml.service_repo] Returned 200 for tasks.get_all in 3ms
[2022-10-14 17:22:50,784] [9] [INFO] [clearml.service_repo] Returned 200 for tasks.get_by_id in 7ms
[2022-10-14 17:22:50,853] [9] [INFO] [clearml.service_repo] Returned 200 for events.add_batch in 182ms
[2022-10-14 17:22:50,874] [9] [INFO] [clearml.service_repo] Returned 200 for tasks.edit in 28ms
[202...

one year ago
Show more results compactanswers