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 Any Plans To Add Support For Multiindex Tables? That Comma-Separation Feels A Bit Odd. (Also This Shows Up In

So something like https://github.com/allegroai/clearml/blob/master/examples/reporting/pandas_reporting.py#L28 but multi index?

Was wondering if there are plans to add better support for it

Not currently, can you add a https://github.com/allegroai/clearml/issues/new so we do not forget to add such?

3 years ago
0 Hey Trains-Riders, Is There A Way From The Web Ui, To Automate Multiple Experiments, Each With A Different Configuration? Let Me Clarify What I Mean: Say I Have An Experiment Already Executed And Visible In The Experiments View. I Can Manually Duplicate I

Hi ColossalDeer61 ,

Not from the UI, but you can run a simple script to do that (assuming you can parse your configuration file), here is an example:

` from trains import Task

configuration_file = {
"stage_1": {
"batch_size": 32,
"epochs": 10
},
"stage_2": {
"batch_size": 64,
"epochs": 20
},
}

template_task = Task.get_task(task_id=<YOUR TEMPLATE TASK>)

for name, params in configuration_file.items():
# clone the template task into a new...

4 years ago
0 Hey Trains-Riders, Is There A Way From The Web Ui, To Automate Multiple Experiments, Each With A Different Configuration? Let Me Clarify What I Mean: Say I Have An Experiment Already Executed And Visible In The Experiments View. I Can Manually Duplicate I

ColossalDeer61 we can add to the script Task.init and we will have this service in the UI, with connection to the configuration, users can change the configuration from the UI and send this script to execute (in services queue for example). This way others can change the configuration and run this script.

` from trains import Task

service_task = Task.init(project_name="services", task_name="clone and enqueue by configuration")

configuration_file = {
"stage_1": {
"batch_...

4 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 Question, When Using

Hi WackyRabbit7 ,

It should take the latest one (sorting according to date/time)

3 years ago
0 Hello, A Question On Using The Aws Autoscaler App In The Saas – Can A Custom Iam Role Be Used For Launching The Machines? I’M Looking At Giving Custom Permissions To The Machine For Checking Out Secrets / Code / Etc.

Hi SparklingHedgehong28 ,

also, when the AZ spec is left empty (it’s optional), machines fail to start with

Invalid type for parameter LaunchSpecification.Placement.AvailabilityZone, value: None, type: <class 'NoneType'>, valid types: <class 'str'>Checking this issue, when not specifying the AZ it should use an available one, will keep you posted about it

ok, I misread. The launch code runs in the SaaS, but it uses credentials to launch machines in our cloud. What stops it th...

2 years ago
0 How Come I Use

logger.report_matplotlib_figure(title="some title", series="some series", figure=fig, iteration=1, report_interactive=Fasle)

3 years ago
0 Hi, I Started My Agent Using. Clearml-Agent Daemon --Gpus 0 --Queue Gpu --Docker --Foreground, With The Following Parameters In Clearml.Conf.

according to this part

Applying uncommitted changes Executing: ('git', 'apply', '--unidiff-zero'): b"<stdin>:11: trailing whitespace.\n task = Task.init(project_name='MNIST', \n<stdin>:12: trailing whitespace.\n task_name='Pytorch Standard', \nwarning: 2 lines add whitespace errors.\n"I don’t see the requirements change, lets try without the cache, can you clear it (ClearML cache dir is located at ~/.clearml )?

3 years ago
0 Hello, Is There Some Way To Use Clearml With "Spawn" Multiprocessing? By "Spawn" Multiprocessing I Refer To:

Hi StaleMole4 ,

Hag Sameach 🙂 I just tried with the latest version and didn’t get any issues, can you try with it?

3 years ago
0 Is It Possible To Write Text File And See It In Results Of The Experiment? I Want To Use It To Version Data As In Keeping A Track Of What Images Have Been Trained On. Or Is There A Better Way Of Data Versioning In Clearml?

Hi VexedCat68

Is it possible to write text file and see it in results of the experiment?

You can upload any file as an artifact to your task, try:

task.upload_artifact(name="results", artifact_object="text_file.txt")

I want to use it to version data as in keeping a track of what images have been trained on. Or is there a better way of data versioning in ClearML?

You can use https://clear.ml/docs/latest/docs/clearml_data/ for making the data accessible from every machine...

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

Hi ElegantDeer55 ,

Are you referring to https://github.com/allegroai/trains-pycharm-plugin ? If so, it should sync you .git folder to the remote machine so the task will log the git.

Basically I am confused if “remote debugging” should work / kick in automatically when running in docker mode and starting a task like this:

 from trains import Task
task = Task.init(project_name=“my project”, task_name=“my task”)
task.execute_remotely()

When you are running this code from you P...

4 years ago
0 Hi, How Can I Get Programmatically A Task'S Logged Stderr Stream?

Hi ImmensePenguin78 ,

You can get all the console outputs using task.get_reported_console_output() . can this do the trick?

3 years ago
0 Looking At Clearml-Serving - Two Questions - 1, What’S The Status Of The Project 2. How Does One Say How A Model Is Loaded And Served Etc? For Example, If I Have A Spacy Ner Model, I Need To Specify Some Custom Code Right?

So for adding a model for serve with endpoint you can use

clearml-serving triton --endpoint "<your endpoint>" --model-project "<your project>" --model-name "<your model name>"
when the model is getting updated, is should use the new one

3 years ago
0 Sorry If This Is Addressed In Docs Somewhere - Does An Agent Map To One Worker (1:1) All The Time? Can I Have Multiple Workers In An Agent? Does Docker Mode Enable Multiple Workers Per Agent?

clearml-agent can listen to one or more queues, once a task is enqueue to those queue, the clearml-agent will pull it and will run the task.

You can allocate you resources to the clearml-agent (like https://clear.ml/docs/latest/docs/clearml_agent#allocating-resources ) and you can prioritize your queues (if you have more than one - https://clear.ml/docs/latest/docs/clearml_agent#queue-prioritization )

3 years ago
0 How Is The New Gui "Setup Shell Script" Option Supposed To Be Used? I Would Like To Add An Apt Install Command To One Of My Tasks, And From Reading The Related Github Issues I Presumed I Could Just Type Those In To This New Textbox In The Tast Exectution-

Hi ThickDove42 ,

The SETUP SHELL SCRIPT is the bash script to run at the beginning of the docker before launching the Task itself.

You can just try edit it, for example:

apt update apt-get install -y gcc

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

HI JitteryCoyote63 ,

can you try increasing the polling_interval_time_min to 5-7 minutes for the check? do you get double machines with it too?

3 years ago
0 I Want To Run My Clearml Task On An Agent In K8S Together With A Memory Profiler (Maybe

Does it had any errors in the local run up to the task.execute_remotely call?

You can try hack it, in the UI, under EXECUTION tab, add this prefix (-m scalene) to the script path, something like: - scalene my_clearml_task.py , can you try with it? (make sure you install scalene or have it under your installed packages)

3 years ago
0 Hi! Using Pytorchlightning. How Do I Define The Names Of The Plots In The Legend?

And you like each series to be in a different plot?

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 All, Is There Documentation \ Example Describing How Does Clearml Works With Hydra?

hi DepressedChimpanzee34 . once you change the parameters in the cloned task from the UI, those will be the parameters your task will use when running with the ClearML agent.

The configuration you see in the UI will be the actual running configuration for task

3 years ago
Show more results compactanswers