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 I Am Currently Running A Clearml-Server And Have Few Questions About Dataset Management.

Hi BitterLeopard33 ,

You want to have the data section in the dataset task uri?

3 years ago
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 Hi, I'M Trying Out The

Hi CleanPigeon16 .

Do you get anything in the UI regarding this failure (in the RESULTS -> CONSOLE section)?

3 years ago
0 Hi, I'M Having Trouble Creating My Experiment Environment In The Clearml-Agent Worker. I Have A Set Of Dependencies Which Are Hard To Setup, So I Opted To Work In Docker Mode. My Image Contains The Python Virtualenv Needed For My Experiments, But Clearml

Hi ObliviousCrocodile95 ,

Trying to understand, you want to have the clearml-agent docker mode with pre install virtual environment?

Currently this setup means that I clone my repository in the docker image - so the commit & changes aren’t reflected in this environment. Any way to remedy this?

The clearml-agent should clone your repository and apply the changes from the parent task.

3 years ago
0 Hi Everyone, I Had A Request To Use

The PipelineController task? If so, you can get the task ( pipeine_task = Task.get_task(task_id=your pipeline task id) ) and after pipeine_task.get_output_destination() , can this do the trick?

3 years ago
0 Hi, Is There A Way To Get Some Stats About The Use Of Workers? I Would Like To Know, Over The Past 3 Months:

Hi JitteryCoyote63 ,

You can get some stats (for the last month) under the workers section in your app, clicking a specific worker will give you some more options
Those doesn’t includes stats per training, but per worker

3 years ago
0 Question, When Using

Hi WackyRabbit7 ,

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

3 years ago
0 Hi, Although

Can you check it with the latest? 1.0.2 ?

3 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

3 years ago
0 Hi, I Have A Train Server Set Up On Some Ip And Accessing The Web Interface Works Great. But How Do I Configure

We can certainly add a trains.conf brief, thanks for the feedback  🙂

4 years ago
0 How Come I Use

Hi WackyRabbit7 ,

not sure I get it, you dont see the report in the UI?

3 years ago
0 Can We Somehow Add A Column "Duration" To The List Of Experiments ?

Yap, you right the math part. You can add column from metrics and hyper-params too, but currently we don’t have total duration as a column.

Let me check about the duration and what we can do

4 years ago
0 Hi, Although

JitteryCoyote63 which version are you using?

3 years ago
0 How Come I Use

try report_interactive=False

3 years ago
0 Hi, Although

pip install clearml==1.0.2

3 years ago
0 Hi, When I Use The Autoscaler To Start Jobs, I Noticed Some Of Them Randomly Abort In The Middle Of The Jobs And Give The Following Error:

python invoked oom-killerOut of memory, CloudySwallow27 in the scaler app task, can you check if you have scalers reporting?

2 years ago
0 Hi, I Have A Train Server Set Up On Some Ip And Accessing The Web Interface Works Great. But How Do I Configure

Hi CooperativeSealion8 ,

trains is configured according to ~/trains.conf file, in this file you should define the app, api and files servers.

You can do it with our great wizard, just type
trains-init in your CLI and follow the instructions,
` ❯ trains-init
TRAINS SDK setup process

Please create new trains credentials through the profile page in your trains web app (e.g. )
In the profile page, press "Create new credentials", then press "Copy to clipboard".

Paste cop...

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

yes, it will just run as a python process

3 years ago
0 Can We Somehow Add A Column "Duration" To The List Of Experiments ?

Hi TightElk12 ,

You can view the Started column, and if you like only running experiments, you can filter to only Running in status column. Can this do the trick?

4 years ago
0 Hi, Although

👍

3 years ago
Show more results compactanswers