Spaces:
Sleeping
Sleeping
franzi2505
commited on
Commit
•
e0e73ce
1
Parent(s):
1a05115
Update README.md
Browse files
README.md
CHANGED
@@ -112,8 +112,8 @@ The metric takes four optional input parameters: __label2id__, __stuff__, __per_
|
|
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 |
-
|
116 |
-
|
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 |
|
@@ -123,10 +123,10 @@ A dictionary containing the following keys:
|
|
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 __all__.
|
125 |
For each key, it contains a list that consists of four elements: TP, FP, FN and IOU:
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
With all these values, it is possible to calculate the final scores.
|
131 |
|
132 |
## Further References
|
|
|
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 |
|
|
|
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 __all__.
|
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
|
128 |
+
* __FN__: number of false negative predictions
|
129 |
+
* __IOU__: sum of IOU of all TP predictions with ground truth
|
130 |
With all these values, it is possible to calculate the final scores.
|
131 |
|
132 |
## Further References
|