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

Reputation

0

Badges 1

86 × Eureka!
0 Votes
2 Answers
2K Views
0 Votes 2 Answers 2K Views
Hello How do I set dependencies for the pipeline controller? I'm using the PipelineDecorator to create my pipeline, and the return value of a stage(in the fo...
3 years ago
0 Votes
6 Answers
2K Views
0 Votes 6 Answers 2K Views
Hey, I need some help with StorageManager; So I have a minio bucket storing multiple images as objects in it. For some reason, downloading the bucket using t...
3 years ago
0 Votes
9 Answers
2K Views
0 Votes 9 Answers 2K Views
Hey, I had a doubt with clearml-agent I run it locally in non docker mode, I was wondering if there is a cap to the number of cpu cores that are assigned to ...
3 years ago
0 Votes
8 Answers
2K Views
0 Votes 8 Answers 2K Views
Hey, how exactly do we store models generated from a stage in my pipeline? I was looking to store them in h5/ p th formats in particular. Is there an example?
3 years ago
0 Votes
13 Answers
2K Views
0 Votes 13 Answers 2K Views
3 years ago
0 Votes
4 Answers
2K Views
0 Votes 4 Answers 2K Views
Hello, Here's another observation that I've made, Im using pipeline decorators to make my pipeline. Setting the pipeline controller with pipeline_execution_q...
3 years ago
0 Votes
31 Answers
124K Views
0 Votes 31 Answers 124K Views
Hey, I'm trying to build a clearml pipeline using decorators. My training script includes two modules(.py files) that's stored locally. This however causes a...
3 years ago
0 Votes
26 Answers
2K Views
0 Votes 26 Answers 2K Views
Hey, I have my clearml server set up on my local machine , however I want to try clearml- serving on this machine as well; But here's the issue: When I run t...
3 years ago
0 Votes
32 Answers
123K Views
0 Votes 32 Answers 123K Views
Need a little help here; I have a clearml server set up on another machine and clearml configured on my laptop(running in wsl) for some reason I can't seem t...
3 years ago
0 Votes
25 Answers
3K Views
0 Votes 25 Answers 3K Views
Hey, So I'm trying to upload an artefact to clearml’s fileserver(I have a self hosted clearml server running), I've uploaded the file using StorageManager.up...
3 years ago
0 Hello,

Yep, no clue why I had two of them either;
It started my pipeline and a few seconds in, another pipeline shows up

3 years ago
0 Need

So I'm trying to run my pipeline file that runs a pipeline locally and logs metrics and stuff to the clearml server

3 years ago
0 Need

image

3 years ago
0 Hey,

What is the detached flag for?

3 years ago
0 Need

Here's the code we're testing

3 years ago
0 Need

I replaced local host with the host name of the server in the credentials

3 years ago
0 Hello

More context:
I'm using agents to remotely execute the pipeline,
A weird observation is that adding ‘import timm’ to the pipeline controller doesn't make the agent running the pipeline controller install timm.
Adding to this,
Here I want to run the entire pipeline remotely - both the controller and the components run on agents

3 years ago
0 Hey, I'M Trying To Set Up A Clearml Server On Docker As Per Documentation. Everything Goes Well Until The Docker-Compose Up Step, That'S When I Get This Error; Error: Error Pulling Image Configuration: Download Failed After Attempts=6: X509: Certificate

version: "3.6"
services:

apiserver:
command:
apiserver
container_name: clearml-apiserver
image: allegroai/clearml:latest
restart: unless-stopped
volumes:
/opt/clearml/logs:/var/log/clearml
/opt/clearml/config:/opt/clearml/config
/opt/clearml/data/fileserver:/mnt/fileserver
depends_on:
redis
mongo
elasticsearch
fileserver
environment:
CLEARML_ELASTIC_SERVICE_HOST: elasticsearch
CLEARML_ELASTIC_SERVICE_PORT: 920...

3 years ago
0 Hey, I'M Trying To Set Up A Clearml Server On Docker As Per Documentation. Everything Goes Well Until The Docker-Compose Up Step, That'S When I Get This Error; Error: Error Pulling Image Configuration: Download Failed After Attempts=6: X509: Certificate

So, I replaced line 65 in your docker-compose file with image: elasticsearch:7.16.2 so that it pulls the image from the dockerhub registry than the registry at http://docker.elastic.co , I just want to confirm if this is okay with the functioning of clearml

3 years ago
0 Hey,

Super sorry for being a bit late!

3 years ago
0 Hey,

Hey We figured a temporary solution - by importing the modules and reloading the contents of the artefact by pickle. It still gives us a warning, though training works now. Do send an update if you find a better solution

3 years ago
0 Need

That's alright?

3 years ago
0 Hey,

Removing the “” in my env file gives me a timeout issue

3 years ago
0 Hey,

I'm facing the issue during the initial set up of clearml serving - i.e the step where you use docker-compose to launch the serving containers

3 years ago
0 Hey, So I'M Trying To Upload An Artefact To Clearml’S Fileserver(I Have A Self Hosted Clearml Server Running), I'Ve Uploaded The File Using Storagemanager.Upload_File(Path, Url) And Giving The Url As “

Yep, that's exactly what's happening.
However here's what I want to do:
upload model to clearml’s fileserver and get the model url in the details for easy download

3 years ago
0 Need

Configuration completed now; I t was a proxy issue from my end
However running my pipeline from a different m achine still gives me a problem

3 years ago
0 Hey, So I'M Trying To Upload An Artefact To Clearml’S Fileserver(I Have A Self Hosted Clearml Server Running), I'Ve Uploaded The File Using Storagemanager.Upload_File(Path, Url) And Giving The Url As “

Also, does PipelineDecorator.upload_model store anything on the fileserver ? I can't seem to understand the use of PipelineDecorator.upload_model() apart from making a model appear on the pipeline task

3 years ago
0 Hey,

Do let me know about the cpu cores

3 years ago
0 Need

This issue was due to a wsl proxy problem; wsl’s host name couldn't be resolved by the server and that became a problem for running agents. It works fine on Linux machines so far, however.
So no worries :D

3 years ago
0 Need

How do I access the logs of the init process?

3 years ago
0 Need

I had initially just pasted the new credentials in place of the existing ones in my conf file;
Running clearml-init now fails at verifying credentials

3 years ago
0 Need

Exactly what I thought;
That's so odd

3 years ago
0 Hey,

Not local .py files

3 years ago
0 Hey,

http://localhost:9000 http://localhost:9000/%3Cbucket%3E
My minio instance is hosted locally at the 9000 port.

3 years ago
0 Hey,

A simple StorageManager.download_folder(‘url’)
My minio instance is hosted locally, so I'm providing an url like ‘ http://localhost:9000/bucket-name%E2%80%99

3 years ago
3 years ago
0 Hello,

More context:
I have agents running the stages and the pipeline being executed locally here.

3 years ago
Show more results compactanswers