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
TimelyPenguin76
Administrator Moderator
0 Questions, 711 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0
0 What’S The Easiest Way To Update The Repo Url Alone For A Task? Need - In My Ci, The Url Used Is Https But I Need The Ssh Url To Be Used. I See That We Can Pass Repo To Task.Create But Not Task.Init

Hi TrickySheep9 ,

The Task.init call will detect your repository as part of the automagic. You can disable it with
auto_connect_frameworks={'detect_repository': False}but I dont think this is the case.

Maybe clearml-task ? You can https://clear.ml/docs/latest/docs/guides/clearml-task/clearml_task_tutorial

2 years ago
0 When I Do Task.Init() And Then A Execute_Remotely(), The Task Is Being Aborted Rather Than Be In Draft. Am I Missing Something?

TrickySheep9 you can also add the queue to execute this task:

task.execute_remotely(queue_name="default")So it will enqueue it too 🙂

2 years ago
0 Hi, I'M Trying To Set Up

Hi NarrowLobster19 , Is this S3 bucket?

2 years ago
0 When Using

I guess not many people use the local file storage

I’m using it 🙂
How can I reproduce this issue? what should I have as cache_dir ? ~/.clearml ?

2 years ago
0 When Using

Can you check the running user has all the permissions?

2 years ago
0 When Using

let me try to reproduce this issue

2 years ago
0 When Using

UnevenDolphin73 I cant reproduce this issue on my side 😞 can you give me some hints how to?

2 years ago
0 When Using

👍 let me try to reproduce with it. can you write the change you edited in the docker-compose ?

2 years ago
0 Can One Delete Individual Tasks From The Webui?

Hi UnevenDolphin73 . try to archive it, you can delete archive tasks from the UI

2 years ago
0 When Uploading An Artifact, Can I List It In Some Grouping (Like With Parameters, Having E.G.

not sure about the Other , but maybe adding some metadata to the artifact can do the trick?

You can get all the artifacts with task.artifacts and you can go over it and filter with the metadata, wdyt?

2 years ago
0 Hi All, I Have A Question About Datasets. I See That In The Process Of Creating A Dataset, You Have To Use

Hi ConvolutedChicken69 , the Dataset.upload() will upload the data as an artifact to the task and will allow others to use the dataset (ClearML agents for example, running and using the data with Dataset.get() ).

2 years ago
0 Hi, I Was Using The K8S Glue And It Worked Fine On One Project But Didn'T Work On Another. At The Point Just Before A Git Clone Was Executed, I Get The Error

Hi SubstantialElk6 ,

You can use any docker image you have access too.
Can you attach the logs with the error? virtualenv should be install with the clearml-agent

3 years ago
0 Hi, I Have A Question Regarding The New

Hi GiganticTurtle0 ,

You have all the tasks that are part of the pipeline in an execution table (with links) under plots section, does it helps?

2 years ago
0 Hi, Is There A Way I Can Supply Credentials To Clearml-Data (Cli And Python) Without Going Thru The Clearml.Conf?

Hey SubstantialElk6 ,

You can try adding environment vars with that info:

os.environ["CLEARML_API_HOST"] = api_server os.environ["CLEARML_WEB_HOST"] = web_server os.environ["CLEARML_FILES_HOST"] = files_server os.environ["CLEARML_API_ACCESS_KEY"] = access_key os.environ["CLEARML_API_SECRET_KEY"] = secret_key

2 years ago
0 Hey, I'M Trying To Run The Aws Autoscaler And Pull A Docker Image From Ecr (Private Repository). I'M Currently Getting The Error:

Hi CleanPigeon16 , yes it is.

You can just write the same as you do in your ~/clearml.conf file, for example:

agent.force_git_ssh_protocol = true

2 years ago
0 Hi Clearml. I'M Trying To Look At Datasets Functionality (With The Help Of

Hi HelpfulHare30

1). Great

🙂

  1. As you can see from my screenshot,  Data Processing task is created but I don’t see Datasets tab as I see in 

This dataset tab is part of the enterprise solution, clearml-data is part of the open source ClearML

  1. I see. So need to specify with every cli command/SDK method call

How do you use it with the SDK?

3 years ago
0 Hi All, Is There Documentation \ Example Describing How Does Clearml Works With Hydra?

 thanks for the answer, so for example (to make sure I understand) with the example you gave above when I’ll print the config I’ll see the new edited parameters?

Correct

What about the second part of the question, would it be parsed according to the type hinting?

It should

3 years ago
0 Hi , I Have This Use Case.

Not sure getting that, if you are loading the last dataset task in your experiment task code, it should take the most updated one.

3 years ago
0 Hi , I Have This Use Case.

how do you load the data inside each task in PROJ_2?

3 years ago
0 Hi, I Would Like To Understand More On How Clearml Deal With Codes.

Hi SubstantialElk6 .

ClearML with add you entire script to the uncommitted changes section if its a standalone script (not part of a git repository).
If you run a script that is part of a git repository, the uncommitted changes section will contain the git diff of you work, along with the git repository address, branch, commit id or tag.

In order to re run a clone of this task, the agent running it will need to have the credentials to the repository (in order to clone it)

3 years ago
3 years ago
Show more results compactanswers