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
ElegantCoyote26
Moderator
34 Questions, 126 Answers
  Active since 10 January 2023
  Last activity 8 months ago

Reputation

0

Badges 1

125 × Eureka!
0 Votes
12 Answers
1K Views
0 Votes 12 Answers 1K Views
I think there is a little bug with the PipelineDecorator.component : i provide the name of the component but it uses the name of the wrapped function as the ...
2 years ago
0 Votes
13 Answers
1K Views
0 Votes 13 Answers 1K Views
is there a way to limit the number of jobs/tasks that can run concurrently on the services queues?
2 years ago
0 Votes
5 Answers
1K Views
0 Votes 5 Answers 1K Views
The
the Dataset method create seems to expect the parameter parent_datasets in the form of a list indicating the parent dataset task IDs, instead of the name. Th...
3 years ago
0 Votes
1 Answers
942 Views
0 Votes 1 Answers 942 Views
if I do task.create() how do I pass the output_uri=True thing to it? that task.init generally has?
2 years ago
Show more results questions
0 Has Anyone Used

i'm probably sending the request all wrong + i'm not sure how the model expects the input

3 years ago
0 Has Anyone Used

well, i have run the keras mnist example that is in the clearml-serving READme. Now I'm just trying to send a request to make a prediction via curl

3 years ago
0 Has Anyone Used

So far I have taken one mnist image, and done the following:

` from PIL import Image
import numpy as np

def preprocess(img, format, dtype, h, w, scaling):

sample_img = img.convert('L')


resized_img = sample_img.resize((1, w*h), Image.BILINEAR)
resized = np.array(resized_img)
resized = resized.astype(dtype)

return resized

png img file

img = Image.open('./7.png')

preprocessed img, FP32 formated numpy array

img = preprocess(img, format, "float32", 28, 28, None)

...

3 years ago
0 Any Idea What Could Be Going On Here?

logger.report_media( title=name_title, series="Nan", iteration=0, local_path=fig_nan, delete_after_upload=delete_after_upload, ) clearml_task.upload_artifact( name=name_title, artifact_object=fig_nan, wait_on_upload=True, )

one year ago
0 Is There A Way To Limit The Number Of Jobs/Tasks That Can Run Concurrently On The

i expected to see 2 tasks running, and then when completed the remaining 2 could start. Is this not the expected behavior?

2 years ago
0 Is There A Way To Limit The Number Of Jobs/Tasks That Can Run Concurrently On The

in particular, I ran the agent with clearml-agent daemon --queue test-concurrency --create-queue --services-mode 2 --docker "ubuntu:20.04" --detached and enqueued 4 tasks to it that sleep 15 minutes.
I can see all 4 tasks running, see

2 years ago
0 I Think There Is A Little Bug With The

But where do you manually set the name of each task in this code? the .component has a name argument you can provide

2 years ago
0 Quick Question About The Cleanup Service: One Argument Is

i'm guessing the cleanup_period_in_days can only actually run every day or whatever if the script is enqueued to services

3 years ago
0 Any Idea What Could Be Going On Here?

Not sure why it tries to establish some http connection, or why it's / ...

one year ago
0 Is There A Way To Limit The Number Of Jobs/Tasks That Can Run Concurrently On The

I am tagging AgitatedDove14 since I sort of need an answer asap...!

2 years ago
0 Quick Question About The Cleanup Service: One Argument Is

if i enqueue the script to the services queue but run_as_service is false, what happens?

3 years ago
0 I Think There Is A Little Bug With The

my server isn't the latest, though..

2 years ago
0 Is It Possible To Add Extra Arguments To

hiya Jake, how do I inject this with the extra_docker_shell_script setting?

2 years ago
0 Has Anyone Used

it's from the github issue you sent me but i don't know what the "application" part is or the "NV-InferRequest:...."

3 years ago
0 Has Anyone Used

img.tofile('7.binaryimage',format='binary') can this be the issue?

3 years ago
0 Hi There, Are There Any Plans To Add Better Documentation/Examples To

I am curious about the updates on version 1.0.0, where can I see some info regarding this?
Passing state information from pre to postprocessing and the dynamic preprocessing code thing, for example

2 years ago
0 Is There A Way To Limit The Number Of Jobs/Tasks That Can Run Concurrently On The

Right, I used --services-mode 2 and it still runs more than 2 tasks simultaneously

2 years ago
0 Is It Possible To Add Extra Arguments To

SuccessfulKoala55 I can't get it to work... I tried using the pip conf locally and it works, but the agent doesn't seem to be able to install the package

2 years ago
0 Has Anyone Used

i don't know ahahaha

3 years ago
0 Any Idea What Could Be Going On Here?

tagging @<1523701205467926528:profile|AgitatedDove14> here just in case 😅

one year ago
2 years ago
0 I Think There Is A Little Bug With The

sheesh, weird. I don't get the same.

2 years ago
0 Is There A Way To Limit The Number Of Jobs/Tasks That Can Run Concurrently On The

Hi SuccessfulKoala55 I am having some issues with this. I have put a concurrency limit of 2 and I can see 3 workers running

2 years ago
Show more results compactanswers