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, Every One, What Is The Algorithm To Schedule A Task After Pulling It From A Queue In Agent? I Am Using Clearml Open Source. Thanks In Advance.

Hi FloppyDeer99 ,

In other words, docs introduce that ClearML Open Source supports orchestration, how can I found the relating codes?

You can find many examples https://clear.ml/docs/latest/docs/getting_started/mlops/mlops_first_steps/ , if you have a specific use case you want to check, please share and I can send an example of it.

And what the role of clearml-agent in orchestration, a combination of kube-scheduler and kubelet?

ClearML agent is an ML-Ops tool for users to r...

3 years ago
0 When A Transitive Dependency Is Optional, How Do We Make Sure The Task Detects It? In My Case, I Have A Task That Reads Excel File Using Pandas Which Needs

Hi TrickySheep9 ,

ClearML does analyze your packages, but you always can add any package you like with Task.add_requirements('xlrd', '') or if its a package that you want the ClearML agent to install always (not per task), you can add it to the agent’s configuration file https://github.com/allegroai/clearml-agent/blob/master/docs/clearml.conf#L82

Can this do the trick?

3 years ago
0 Is There An Option To Separate The Storage From The Server? E.G. Deploying My Trains Server On Some Light Machine, And Confguring The Storage To Be Aws S3 Or Something Similar

Hi WackyRabbit7

When calling Task.init() , you can provide output_uri parameter. This allows you to specify the location in which model snapshots will be stored.
Allegro-Trains supports shared folders, S3 buckets, Google Cloud Storage and Azure Storage.

For example (with S3):

Task.init(project_name="My project", task_name="S3 storage", output_uri="s3://bucket/folder")
You will need to add storage credentials in ~/trains.conf file (you will need to add your aws in thi...

4 years ago
0 Is There An Auto Scaling Solution For Gcp Users?

Hi BrightElephant64 , can you add an example? Also, the ClearML AWS autoscaler know how to work with ClearML-agent queues

3 years ago
0 When Using

đź‘Ť let me try to reproduce with it. can you write the change you edited in the docker-compose ?

3 years ago
0 Hi, I Am Trying To Use Clearml-Data To Upload My Data To S3, Which Is Password Protected. How Should I Indicate The Credentials After I Set --Storage S3://.... ?

let me check if I can think about something else (I know the enterprise edition has full support for such thing and for unstructured data too).

BTW ClearML always use cache, so the big download is done only once.

3 years ago
0 Hi Guys, Needed A Bit Of Clarification. Every 15 Minutes, The Scheduler Prints, "Syncing Scheduler, Sleeping For 15 Minutes Until Next Sync". Can You Guide Me As To It Is Syncing With What?

đź‘Ť
this is a message about configuration sync.

Its allow you to change scheduler in runtime by editing the Task configuration object

2 years ago
0 Another Problem Is That When Using Mp.Spawn To Init Distributed Training In Pytorch,

Hi PompousHawk82 . sorry for the delay, I missed the last message. Can you try adding in the spawn process to have task = Task.get_task(task_id=<Your main task Id>) instead of the Task.init call?

3 years ago
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 Hi Channel, I Am Trying To Upgrade My Ec2 With The Community Ami From Trains 0.16 Server To Latest Clearml Server. I Followed The Instructions

Hi MinuteWalrus85 .

looks like port 8081 is in use, can you check it? docker ps will output you the running dockers (with the ports)

3 years ago
0 Does Anyone Know Why I Keep Getting That Error?

CrookedWalrus33 can you share the log?

2 years ago
0 Hey, I Have A Problem With The Following Task:

Hi JitteryCoyote63 ,

I tried to reproduce this issue but it passed for me, what versions do you run (for trains, trains-server and trains-agent)?

4 years ago
Show more results compactanswers