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

Reputation

0
0 Hi, I Have Started To Receive The Following Error Message:

ArrogantBlackbird16 the file.py is the file contains the Task.init call?
not sure I’m getting the flow, if you just want to create a template task in the system, clone and enqueue it, you can use task.execute_remotely(queue_name="my_queue", clone=True) ,can this solve the issue?

3 years ago
0 <no title>

Hi @<1523707056526200832:profile|ScaryKoala63> .

try using task.upload_artifact for manually uploading artifacts, like in here , you can also configure the upload destination

3 years ago
0 Hi, I'M Using Clearml Python Package On Sagemaker Notebook Instance. If I Want To Edit The Clearml.Conf On The Notebook Instance, How Could I Do That?

Hi SquareFish25 , what about AWS_DEFAULT_REGION , did you add it too? Can you try with it if not?
What version of ClearML are you using?

4 years ago
0 Hi Guys! What Can Be Wrong Here And How To Fix It?

Hi ItchyHippopotamus18 ,

it seems the request does not reach the Trains File Server (port 8081, same machine running Trains Server), can you reach it?

4 years ago
0 Hi, I Have Started To Receive The Following Error Message:

Hi ArrogantBlackbird16 ,

How do you generate and run your tasks? Do you use the same flow as in the https://clear.ml/docs/latest/docs/fundamentals/agents_and_queues#agent-and-queue-workflow ? Some other automation?

3 years ago
0 Any Guides On How To Aggregate Results Of Different Experiments?

Hi JollyChimpanzee19 ,

From the UI you can choose 2 or more tasks and click the compare button, from the code you can use task.get_last_scalar_metrics() for getting the last results of a task as a dictionary. what do you think?

3 years ago
0 Hi, I'M Using Clearml Python Package On Sagemaker Notebook Instance. If I Want To Edit The Clearml.Conf On The Notebook Instance, How Could I Do That?

I will check the aws token, just to verify, you imported the StorageManager after the os.environ calls?

3 years ago
0 Hi, I Have A Question Regarding The Aws-Autoscaler: Am I Understanding Correctly That:

Correct 🙂
polling_interval_time_min = the scaler interval for checking tasks in the queue

3 years ago
0 Hi, I Tried To Provide Docker Image From Pipeline Controller Task To Step Task. Before Pipe.Add_Step(), I Created The Task:

after that, I wanted to create steps from scratch, because I have many steps and I hope to avoid manual editing in GUI (commits and other things). I create this tasks:

You can add this to the template task Task.init(project_name=<your project name>, task_name=<your task name>) instead of the Task.create call and it will have all the inputs for you.
After, add task.set_base_docker("docker command") and it will configure the docker for the task.
Once finish configuring ...

3 years ago
0 Hello! I Have A Dataset On A /Mnt Share. When I Try To Get A Local Copy, The Dataset On The Share Is Deleted. Is This Correct Behaviour? This Is How I Get The Dataset:

Hi DeliciousKoala34 ,

dataset on the share is deleted

the dataset task or the data in the folder? both shouldnt be deleted by get_local_copy activation

2 years ago
0 Are Trains Able To Discover The Docker Image And Docker Command That Is Used For Running The Current Experiment, Or Do I Need To Set It Up Manually By

Hi HealthyStarfish45

If you are running the task via docker, we dont auto detect the image and docker command, but you have more than one way to set those:

You can set the docker manually like you suggested. You can configure the docker image + commands in your ~/trains.conf https://github.com/allegroai/trains-agent/blob/master/docs/trains.conf#L130 (on the machine running the agent). You can start the agent with the image you want to run with. You can change the base docker image...

4 years ago
0 Hi There. I'M Following The Training Instructions For Testing Clearml Agent (

BattyLion34 when you are running the script locally, you have this script ( ResNetFineTune.py ) so you can run it without any issue, but when running the agent, the agent clone the repo, create an env and run the script. Now, the issue is that when trying to run the script, from the cloned repo, it can’t find it, because it’s only on your local machine, in the original git repo.

4 years ago
0 Looks Like The Website Is Down. When I Try To Create Task, I Get The Following Error

Thanks ImpressionableAlligator9 and MagnificentWorm7 for reporting this, I will double check it

2 years ago
0 Hi, Is There A Way To Tag A Dataset Using The Python Package ?

Hi WearyLeopard29 ,

try:

` from clearml import Dataset

ds = Dataset.get(dataset_id="you dataset task id")
ds.tags = ["my tag"] `

3 years ago
0 Is It Possible To View The Actual Code Of A Task? As In The Script That Created The Task?

Hi WackyRabbit7

If you are running the code as a script (without a repo), you can view the full script file at EXECUTION tab under UNCOMMITTED CHANGES. Are you running it as a standalone or as a part of a repo?

4 years ago
3 years ago
Show more results compactanswers