label-studio icon indicating copy to clipboard operation
label-studio copied to clipboard

Multi-score prediction LS project

Open rydka opened this issue 3 years ago • 1 comments

Hello !

My work brings me to need multiple prediction for a task each having their own score. However the task structure limits us on having only one prediction_score by task. Would it be possible to change it. We are in the context of a yolo object detection outputting a few objects but only one of those score can be assign to this prediction and displayed in ls

Other utility tools which would be likeable could be : - Multi-selection of project for deletion : Currently we need to delete the projects on by one. - Merge two projects or subsets of two projects into a third one Thank you for your time

rydka avatar Sep 15 '22 06:09 rydka

@rydka Hello,

  1. You can use scores in the result array, they will be shown on the region panel in the editor, e.g.:
"annotations": [
    {
      "id": 669705,
      "score": 0.42
      ...
      "result": [
        {
          "id": "CSUi4K4IEZ",
          "type": "rectanglelabels",
          "score": 0.24,
          ...
        }
]
  1. Multi-selection of project for deletion

You can try to do this using SDK or API.

  1. Merge two projects or subsets of two projects into a third one

Are you talking about multiple projects with the same labeling config?

makseq avatar Sep 16 '22 23:09 makseq