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 Hi, When I Use The Slack Monitoring Service It Creates A Link With

GreasyPenguin14 I was able to reproduce it, will keep you update when a fix is ready

3 years ago
0 Hi Everybody. I Have Setup Clearml With Some Agents That Execute Experiments In Docker Mode. This Is Working Perfectly. I Am Now Also Trying To Use The Pycharm Plugin To Debug An Issue. Basically I Am Confused If "Remote Debugging" Should Work / Kick In

TL;DR - no 😕

when using task.execute_remotely() , as you wrote, it won’t run on you local environment but with the clearml-agent. When running on the clearml-agent, you task should be stable for running and create a model - for optimize, pipeline and more, but not for debugging.

When running development mode, on your local machine (w/ or w/o remote interpreter), you can debug you code. There are some differences between the two runs - running from a clearml-agent won’t re u...

3 years ago
0 Hi, It Seems That Report_Image Puts The Image Both In Plots And Both In Debug Samples, Why Is That?

Was the agent task cloned from the one works as expected (the dev task)?

4 years ago
0 Hi, What Would Be The Best Way To Save A Pandas.Dataframe As An

Hi OutrageousSheep60 , can you try with auto_pickle=True when uploading the artifact?

2 years ago
0 Hi, I See That There Is A New Parameter In Aws Autoscaler:

max_spin_up_time_min - the maximum time for an instance to spin up
max_idle_time_min - the maximum time for an instance to stay up with worker on it (the time the ec2 instance is finished running a task with the agent and still up with an worker running on it listening to the queue)

3 years ago
0 Hi, It Seems That Report_Image Puts The Image Both In Plots And Both In Debug Samples, Why Is That?

When you run it locally with auto_connect_frameworks={"matplotlib": False} , did it send the matplotlib outputs?

4 years ago
0 Is There Any Way To Create A Queue From Code?

Hi GiganticTurtle0 ,

Not directly with the sdk but you can use the APIClient:
` from clearml.backend_api.session.client import APIClient

api_client = APIClient()
api_client.queues.create("your queue name") `

3 years ago
0 Hi All! Is There A Function/Command That Returns Number Of Tasks In A Queue?

Hi TenderCoyote78 ,

You can get it with the APIClient

from clearml.backend_api.session.client import APIClient api_client = APIClient() tasks_in_queue = api_client.queues.get_by_id(<queue_id>).entries

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
3 years ago
0 Hi Guys, I Have Data ( For Folder Tree Image Classification) And We Stored That On S3 Bucket Minio Can I Register Dataset To Clearml Without Downloading (Using Storage Manager) Data On S3 Bucket To My Local Then Upload To Clearml?

still i need do this?

dataset.upload() dataset.finalize()if you want to finalize the dataset, yes

if we have uploaded data clearml, how we add data?
this is my way right now.

dataset = Dataset.create( dataset_project=metadata[2], dataset_name=metadata[3], description=description, output_uri=f" ", parent_datasets=[id_dataset_latest] )If you finalized it, you can create a child version - https://clear.ml/docs/latest/docs/clearml_data/data_manage...

2 years ago
0 Hi Everyone. For Some Reason, I Could Not Display My Matplotlib Plots (With Subplots) In Trains, While They Can Be Displayed Locally. Here Is An Example Plotting Function Which Could Not Show On Trains. It Would Be Really Helpful If Someone Could Check Th

Hi EagerStork23 ,

Thanks for catching this bug.
We also caught this issue, so a fix is scheduled to be released in one of the coming versions.
I'll update here once it will be released 🙂

4 years ago
0 Question About Out-Of-Python Dependencies. For Example Nltk Requires

Hi WackyRabbit7

If the trains-agent running docker mode, you can add it to agent.docker_init_bash_script in the ~/trains.conf file.

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

Hi BattyLion34 ,

Does ResNetFineTune.py is a new file in your git? Do you see its changes in the original task’s uncommitted changes section?

3 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.

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

To fix it, you can add the file and push the changes to the git. After you should also see the changes in your script (after committed).

3 years ago
0 Question About Out-Of-Python Dependencies. For Example Nltk Requires

 if I build a custom image, do I have to host it on dockerhub for it to run on the agent?

You dont need to host it, but in this case the machine running the agent should have the image (you can verify on the machine with docker images ).

If not how do I make the agent aware of my custom image?

Once the image is the base docker image for this task, and the image was verify on the agent’s machine, the agent should be able to use it

4 years ago
0 Question About Out-Of-Python Dependencies. For Example Nltk Requires

One solution I can think about is having a different image per Task , with the apt-get packages. you can just build a new image based on the one you have with the apt-get packages (or change to one with those packages).

Another one is running more than one agent, each one with different trains.conf file, one for each project.

Currently, task object doesn’t have a parameter for installing packages when running with trains-agent .

4 years ago
0 Hey I Use The Clearml-Agent. In The Code I Have The Two Lines I Need. When I Run The Program It Shows That My Program Is Running On The Demo Trains Page. But I Want It To Run On My Own Server. I Tried To Register And Then Use The Following Page:

how can i check if it is loaded?

When a task is starting, the configuration will be print first

it worked with trains-agent init

Do you have 2 configuration files? ~/trains.conf and ~/clearml.conf ?

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?

3 years ago
Show more results compactanswers