Spaces:
Build error
Build error
Update README.md
Browse files
README.md
CHANGED
|
@@ -111,17 +111,15 @@ The metric takes four optional input parameters: __label2id__, __stuff__, __per_
|
|
| 111 |
["WATER", "SKY", "LAND", "CONSTRUCTION", "ICE", "OWN_BOAT"]`
|
| 112 |
|
| 113 |
* `per_class: bool = True`: By default, the results are split up per class.
|
| 114 |
-
Setting this to False will aggregate the results
|
| 115 |
-
* average the "scores"
|
| 116 |
-
* sum up the "numbers"
|
| 117 |
* `split_sq_rq: bool = True`: By default, the PQ-score is returned in three parts: the PQ score itself, and split into the segmentation quality (SQ) and recognition quality (RQ) part.
|
| 118 |
Setting this to False will return the PQ score only (PQ=RQ*SQ).
|
| 119 |
|
| 120 |
## Output Values
|
| 121 |
A dictionary containing the following keys:
|
| 122 |
-
* __scores__: This is a dictionary, that contains a key for each label, if `per_class == True`. Otherwise it only contains the key
|
| 123 |
For each key, it contains a list that holds the scores in the following order: PQ, SQ and RQ. If `split_sq_rq == False`, the list consists of PQ only.
|
| 124 |
-
* __numbers__: This is a dictionary, that contains a key for each label, if `per_class == True`. Otherwise it only contains the key
|
| 125 |
For each key, it contains a list that consists of four elements: TP, FP, FN and IOU:
|
| 126 |
* __TP__: number of true positive predictions
|
| 127 |
* __FP__: number of false positive predictions
|
|
|
|
| 111 |
["WATER", "SKY", "LAND", "CONSTRUCTION", "ICE", "OWN_BOAT"]`
|
| 112 |
|
| 113 |
* `per_class: bool = True`: By default, the results are split up per class.
|
| 114 |
+
Setting this to False will aggregate the results (average the _scores_, sum up the _numbers_; see below for explanation of _scoress_ and _numbers_)
|
|
|
|
|
|
|
| 115 |
* `split_sq_rq: bool = True`: By default, the PQ-score is returned in three parts: the PQ score itself, and split into the segmentation quality (SQ) and recognition quality (RQ) part.
|
| 116 |
Setting this to False will return the PQ score only (PQ=RQ*SQ).
|
| 117 |
|
| 118 |
## Output Values
|
| 119 |
A dictionary containing the following keys:
|
| 120 |
+
* __scores__: This is a dictionary, that contains a key for each label, if `per_class == True`. Otherwise it only contains the key _all_.
|
| 121 |
For each key, it contains a list that holds the scores in the following order: PQ, SQ and RQ. If `split_sq_rq == False`, the list consists of PQ only.
|
| 122 |
+
* __numbers__: This is a dictionary, that contains a key for each label, if `per_class == True`. Otherwise it only contains the key _all_.
|
| 123 |
For each key, it contains a list that consists of four elements: TP, FP, FN and IOU:
|
| 124 |
* __TP__: number of true positive predictions
|
| 125 |
* __FP__: number of false positive predictions
|