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
ExuberantBat52
Moderator
8 Questions, 47 Answers
  Active since 10 January 2023
  Last activity 2 months ago

Reputation

0

Badges 1

25 × Eureka!
0 Votes
3 Answers
664 Views
0 Votes 3 Answers 664 Views
Hi all, I currently have some data processing scripts for example: - script_1 -> dataset_0, dataset_1 - dataset_1 -> script_2 -> dataset_2 - dataset_2 -> scr...
one year ago
0 Votes
13 Answers
164 Views
0 Votes 13 Answers 164 Views
2 months ago
0 Votes
2 Answers
450 Views
0 Votes 2 Answers 450 Views
6 months ago
0 Votes
10 Answers
701 Views
0 Votes 10 Answers 701 Views
Hi all, What does the SHUTDOWN_IF_NO_ACCESS_KEY environment variable in the ClearML server docker-compose file do, under the clearml-agent-services container...
one year ago
0 Votes
4 Answers
183 Views
0 Votes 4 Answers 183 Views
Hi all, I am currently have a pipeline with multiple steps using the functional api add_function_step I would like for one of the steps to be run from within...
2 months ago
0 Votes
6 Answers
735 Views
0 Votes 6 Answers 735 Views
Hi all, I am currently trying to deploy clearml in AWS Fargate using Terraform, and need to pass in some https://clear.ml/docs/latest/docs/deploying_clearml/...
one year ago
0 Votes
2 Answers
227 Views
0 Votes 2 Answers 227 Views
Hey all, hope you had a great start to your new year! How do I change the task description from the automatically generated task description. I went through ...
3 months ago
0 Votes
2 Answers
745 Views
0 Votes 2 Answers 745 Views
Hi all, I was going through the different ways to deploy ClearML. The AWS EC2 AMI is one way to go about it, however, has anyone managed to go about deployin...
one year ago
0 Hi All, I Am Currently Have A Pipeline With Multiple Steps Using The Functional Api

Nevermind, I figured out the problem. I needed to specify the --docker flag when running the clearml-agent

2 months ago
0 Hello Everyone ! I Tried To Reproduce Your Tutorial :

Right so I figured out why it was calling it multiple times. Everytime a dataset is serialiazed, it calls the _serialize() function inside of clearml/datasets/dataset.py file, the _serialize() method calls self.get(parent_dataset_id) which is the same get() method. This means that the user will always be prompted with the log, even if they are not "getting" a dataset. So anytime a user creates, uploads, finalizes a dataset, they will be prompted with the message...

one year ago
0 Hi Again, I Am Trying To Execute A Pipeline Remotely, However I Am Running Into A Problem With The Steps That Require A Local Package. Basically I Have A Repo, That I Created Specifically For This Pipeline And I Have Packaged It So That I Can Split It I

I set my local laptop as an agent for testing purposes. I run the code on my laptop, it gets sent to the server which sends it back to my laptop. So the conf file is technically on the worker right?

2 months ago
0 Hi All, I Am Currently Have A Pipeline With Multiple Steps Using The Functional Api

Thank you so much for your reply, will give that a shot!

2 months ago
0 Hi All, I Am Currently Have A Pipeline With Multiple Steps Using The Functional Api

Hi again @<1523701435869433856:profile|SmugDolphin23> ,

I was able to run the pipeline remotely on an agent, but I am still facing the same problem with the code breaking on the exact same step that requires the docker container. Is there a way to debug what is happening? Currently there is no indication from the logs that it is running the code in the docker container. Here are the docker related logs:

agent.docker_pip_cache = /home/amerii/.clearml/pip-cache
agent.docker_apt_cache =...
2 months ago
0 Hello Everyone ! I Tried To Reproduce Your Tutorial :

Thanks for the reply. I was trying out this feature on a dummy example. I used the following command
dataset = Dataset.get( dataset_project="palmer penguins", dataset_name="raw palmer penguins", alias="my_test_alias_name", overridable=True)That was the only time I called the get() command. I still got the message that I should specify the alias. I can try and do a bit of debugging to see why it gets called multiple times.

one year ago
0 Hello Everyone ! I Tried To Reproduce Your Tutorial :

I knew that, I was just happy that we have an updated example 😁

one year ago
0 Hello Everyone ! I Tried To Reproduce Your Tutorial :

Wow, that was fast. Thanks a lot for your prompt response! Will check it out now :D

one year ago
0 Hi All, I Am Currently Trying To Deploy Clearml In Aws Fargate Using Terraform, And Need To Pass In Some

Hi AgitatedDove14 ,

I am planning to use terraform to retrieve the secrets from AWS, after I retrieve the user list from the secrets manager, I am going to pass them as Environment variables.

The reason I am passing them as environment variables is that, I couldn't find a way to automatically upload files to AWS EFS from Terraform. Since the config file needs to be mounted as an EFS volume to the ECS task definition.

I was able to make the web authentication work while passing the followi...

one year ago
0 Hi All, I Am Currently Trying To Deploy Clearml In Aws Fargate Using Terraform, And Need To Pass In Some

SuccessfulKoala55 That seemed to do the trick, thanks for your help! 😄

one year ago
0 Hello Everyone ! I Tried To Reproduce Your Tutorial :

So what's the point of the alias? It's not very clear.. Even after specifying an alias I am still getting the following message: Dataset.get() did not specify alias. Dataset information will not be automatically logged in ClearML Server

one year ago
0 Hello Everyone ! I Tried To Reproduce Your Tutorial :

I would like to see it used in a clear example as it was intended to be used before giving my opinion on it, if that makes sense

one year ago
0 Hi Again, I Am Trying To Execute A Pipeline Remotely, However I Am Running Into A Problem With The Steps That Require A Local Package. Basically I Have A Repo, That I Created Specifically For This Pipeline And I Have Packaged It So That I Can Split It I

Hi @<1523701205467926528:profile|AgitatedDove14> ,
Thank you for your prompt response.

I am using the functional pipeline API to create the steps. Where each step calls a function. My functions are stored in the files under the ap_pipeline directory ( filters.py , features.py , etc..)

These are packaged as part of this repo.

The modules are imported inside of the clearml_pipeline.py so it would look something like:

from ap_pipeline.features import func1, func2 ....
This...

2 months ago
Show more results compactanswers