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 one year ago

Reputation

0

Badges 1

25 × Eureka!
0 Votes
13 Answers
1K Views
0 Votes 13 Answers 1K Views
one year ago
0 Votes
2 Answers
2K Views
0 Votes 2 Answers 2K 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...
2 years ago
0 Votes
3 Answers
1K Views
0 Votes 3 Answers 1K 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...
2 years ago
0 Votes
10 Answers
1K Views
0 Votes 10 Answers 1K 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...
2 years ago
0 Votes
2 Answers
1K Views
0 Votes 2 Answers 1K Views
one year ago
0 Votes
2 Answers
1K Views
0 Votes 2 Answers 1K 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 ...
one year ago
0 Votes
6 Answers
1K Views
0 Votes 6 Answers 1K 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/...
2 years ago
0 Votes
4 Answers
1K Views
0 Votes 4 Answers 1K 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...
one year ago
0 Hey Guys, In A Fresh Self-Hosted Clearml Server I Have The Issue That I Cannot See Any Preview Images Of The Files In A Dataset. It Seems Like A Bug, But Maybe I Am Doing Something Wrong?

The thing is, even on the community server, not all the datasets have automatic previews. So for the same code/dataset, some of the runs have previews and some of them don't.

2 years ago
0 Hi All, What Does The

As you can see, it eventually manages to reach the apiserver however, it still says that access key was not provided and that the service will not be started. I get the same behaviour whether I set the flag to 0 or 1.

2 years ago
0 Hi All, What Does The

Thank you for your reply SuccessfulKoala55 . 😄

It is currently set to 1, so I am assuming setting it to 0 would mute the errors from logging?

The current behaviour is, if I keep it set to 1 the services agent would automatically shutdown if the access key is not configured. Assuming I set it to 0, then the agent services should not shutdown anymore, right?

2 years ago
0 Hey Guys, In A Fresh Self-Hosted Clearml Server I Have The Issue That I Cannot See Any Preview Images Of The Files In A Dataset. It Seems Like A Bug, But Maybe I Am Doing Something Wrong?

@<1523701070390366208:profile|CostlyOstrich36> I am facing the same issue:

{"meta":{"id":"90841d05dfb1431a8d9dfc6bfdb39f9e","trx":"90841d05dfb1431a8d9dfc6bfdb39f9e","endpoint":{"name":"events.debug_images","requested_version":"2.23","actual_version":"2.7"},"result_code":200,"result_subcode":0,"result_msg":"OK","error_stack":"","error_data":{}},"data":{"metrics":[]}}
2 years ago
0 Hi All, What Does The

Let me rerun it, so that I can capture it. I am currently running it on AWS Fargate, so I have the logs for that.

2 years ago
0 Hey Guys, In A Fresh Self-Hosted Clearml Server I Have The Issue That I Cannot See Any Preview Images Of The Files In A Dataset. It Seems Like A Bug, But Maybe I Am Doing Something Wrong?

I am using the latest version clearml server and I am using version 1.9.1 for the sdk.

Here is the code that I am currently using:

if __name__ == "__main__":
    # create clearml data processing task
    dataset = Dataset.create(
        dataset_name="palmer_penguins",
        dataset_project="palmer penguins",
        dataset_tags=["raw"]
    )
    dataset_path = "data/raw/penguins.csv"
    # add the downloaded files to the current dataset
    dataset.add_files(path=dataset_pa...
2 years ago
0 Hi All, What Does The

Which would make sense because of the name SHUTDOWN_IF_NO_ACCESS_KEY . The thing is, when I tried setting it to 0, it still shutdown.

2 years ago
0 Hi Everyone, We Have Been Using Clearml Free And It Has Been Working Fine! However We Have Noticed In The Last Few Days That Python Sdk Is Very Slow. Any Idea Of What The Issue Might Be?

I was able to resolve the issue. I am currently using clearml on wsl2 and my machine is connected to a vpn that allows me to connect on to the clearml instance hosted on AWS. You were right it was a network issue, I was able to resolve it by modifying my /etc/resolv.conf file.

2 years ago
2 years 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...

2 years ago
0 Hi All, I Currently Have Some Data Processing Scripts For Example:

Not exactly, the dataset gets called in the script using Dataset.get() and the second dataset is an output dataset using Dataset.create().. Which means that dataset_1 is a parent dataset of dataset_2.

2 years 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...

2 years 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! 😄

2 years 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

2 years 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!

one year ago
0 Hi All, What Does The

so basically the flag also prevents it from shutting down

2 years 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

2 years 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.

2 years ago
Show more results compactanswers