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 Is There A Way To Interface With Clearml Agent (Cli?) To Handle Model Repositories And Data Versioning (But So, Not Experimentation, Tight Integration, Pipelining, Etc)?

ClearML doesnt add any yaml or lock files to your repo, actually I think it only needs read permissions.

In the full/official documentation the 

clearml-data

 CLI is not mentioned anywhere, so perhaps it should be refreshed 

Yep, you are right, The clearml-data is really new, and it will be in one of the next documentation version.

3 years ago
0 Is There A Way To Interface With Clearml Agent (Cli?) To Handle Model Repositories And Data Versioning (But So, Not Experimentation, Tight Integration, Pipelining, Etc)?

Not everything is manage with a git repo, if your script is a standalone, the full script will be in the uncommitted changes section (EXECUTION tab).

The repository information is the repository location, the uncommitted changes, the branch with commit id / tag.

BTW, the full link to the docs - https://allegro.ai/clearml/docs/

3 years ago
0 Is There A Way To Interface With Clearml Agent (Cli?) To Handle Model Repositories And Data Versioning (But So, Not Experimentation, Tight Integration, Pipelining, Etc)?

For data versioning you can use the ClaerML data managemant.
Its being done with the CLI, an easy installation and you are ready to go, you can view a full example in this link - https://github.com/allegroai/clearml/blob/master/docs/datasets.md , including the installation.

Every task in ClearML includes the git repo, the changes and the full running environment.

You have some more cool things you can use (like pipelines, HPO, ClearML task CLI and more), you can find all of them here - ht...

3 years ago
0 When I Clone A Task, Is There A Way To Set Parameters That Override Rather Than Replace? As In, Original Task Parameters Is Param1 = {“A”: 1, “B”: 1} Can I Supply {“B”: 2} And It Overrides B Alone Without Removing A. Or Do I Have To Handle The Merge Mys

Hi TrickySheep9 , currently when you override a parameter ( param1 in this example), you are overriding the whole parameter, but with using get_parameters function the merge should be easy 😉

3 years ago
0 Sorry, I'M Asking Too Much Questions Today. I Gave Myself A Whole Day To Fully Evaluate Clearml...That'S Why. Here Goes. Regarding Automatic Logging (Automagikal), I Took Your Example (

Hi SubstantialElk6 ,

Please feel free to ask anything 🙂

If nothing is reported, then nothing will be displayed.

For example, if you are reporting to Tensorboard, it will be automatically sent to the UI - https://github.com/allegroai/clearml/blob/master/examples/frameworks/pytorch/pytorch_tensorboard.py (run this example and view the scalers section 🙂 )

3 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
0 Hey, I Have A Problem With The Following Task:

can you try upgrade? I run it with trains==0.16.2rc0

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

Hi SmarmySeaurchin8

I tried to reproduce your issue (run https://github.com/allegroai/trains/blob/master/examples/reporting/image_reporting.py example with many report_image calls) and got all the outputs in the debug samples section, can you share a snippet or how can I reproduce this issue?

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

Trains auto-magical reports many frameworks plots: matplotlib, Tensorboard and more, maybe this is the issue? The report_media / report_image was double reporting?

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

Well the happy flow is to execute is locally, then clone this task and run it in the agent. If you dont want to run it locally, you can use the task.execute_remotely() and clone this one or just start running it and kill it manually, or run one epoch to view the outputs

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

If you like, you can disable the auto magical for matplotlib and report manually.

For doing so, pass auto_connect_frameworks={"matplotlib": False} to Task.init .

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

Can you send me the general flow in code?

BTW, if you want to clone a task, you can use Task.clone

4 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, 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 Hi, There Is A Bug With Get_Logger Here:

Hi SmarmySeaurchin8 , Thanks, we will check that, can you share the Python version you use? 3.6?

3 years ago
0 Hello, I Always Got A "Modulenotfounderror: No Module Named..." Error When I Run A Pipeline And Import A Local .Py File. I'M Using Decorator Pipeline, How Can I Import That Local .Py Files? My Pipeline Code And That .Py Files I Wanted To Import Already In

Hi

I specify the repo for each step by using the ‘repo’ arguments from PipelineDecorator.component.
Here is my reference

MoodyCentipede68 do you see the repo under EXECUTION tab?

2 years ago
0 Hello Everyone, I'M Trying To Do Prepare A Pipeline On Clearml With My Custom Framework Script That Import And Executes Other Scripts. However, When I Write Functions Inside The Pipeline I Get

Hi GhastlySquirrel83 ,

You can specify the repository ( repo=None, repo_branch=None, repo_commit=None parameters) in the add_function_step for connecting the specific repo into the step, you can view all the options with some examples here - https://clear.ml/docs/latest/docs/references/sdk/automation_controller_pipelinecontroller#add_function_step

2 years ago
Show more results compactanswers