mlcomp icon indicating copy to clipboard operation
mlcomp copied to clipboard

Table doesn't show in custom layout

Open megachester opened this issue 5 years ago • 4 comments

When I try to add table to my layout, e.g.

layout:
  - type: panel
    title: table
    items:
      - type: table
        source: [loss, mAP]

nothing shows up in report. No problems with plotly graphs of these series.

megachester avatar Mar 26 '20 15:03 megachester

Could you provide me please with the full layout? What is the version of MLComp?

lightforever avatar Mar 26 '20 17:03 lightforever

Layout:

metric:
  name: mAP
  minimize: False

items:
  loss:
    type: series
    key: loss
  clf_loss:
    type: series
    key: clf_loss
  reg_loss:
    type: series
    key: reg_loss
  mAP:
    type: series
    key: mAP

layout:
  - type: panel
    title: table
    table: True
    parent_cols: 1
    items:
      - type: table
        source: [loss, mAP]

  - type: panel
    title: main
    parent_cols: 2
    row_height: 400
    items:
      - type: series
        source: loss
        multi: True
      - type: series
        source: mAP
        multi: True
      - type: series
        source: _other

Version is 20.3.1

megachester avatar Mar 26 '20 17:03 megachester

I have tried to investigate the problem.

However, it works on my computers.

lightforever avatar Apr 09 '20 14:04 lightforever

Btw 1) Could you please provide the example of how one can work with report functionality from custom executor? Is layout reference needed in it's code? 2) How to create custom layouts besides from the UI?(like segment or classify)

megachester avatar Apr 13 '20 13:04 megachester