franzi2505 commited on
Commit
8671b89
·
verified ·
1 Parent(s): 8fddee8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -4
README.md CHANGED
@@ -220,16 +220,16 @@ The metric takes four optional input parameters: __label2id__, __stuff__, __per_
220
  ## Output Values
221
  A dictionary containing the following keys:
222
  * __scores__: This is a dictionary, that contains a key for each label, if `per_class == True`. Otherwise it only contains the key _all_.
223
- For each key, it contains an array that holds the scores in the the columns in following order: PQ, SQ and RQ. If `split_sq_rq == False`, the columns consist of PQ only.
224
- The number of rows corresponds to the given area ranges. That means, the results in each row are for a certain size of objects.
225
  * __numbers__: This is a dictionary, that contains a key for each label, if `per_class == True`. Otherwise it only contains the key _all_.
226
- For each key, it contains an array that consists of four elements in the columns: TP, FP, FN and IOU:
227
  * __TP__: number of true positive predictions
228
  * __FP__: number of false positive predictions
229
  * __FN__: number of false negative predictions
230
  * __IOU__: sum of IOU of all TP predictions with ground truth
231
 
232
- With all these values, it is possible to calculate the final scores. As for the scores, the number of rows corresponds to the given area ranges. That means, the results in each row are for a certain size of objects.
233
 
234
  ## Further References
235
 
 
220
  ## Output Values
221
  A dictionary containing the following keys:
222
  * __scores__: This is a dictionary, that contains a key for each label, if `per_class == True`. Otherwise it only contains the key _all_.
223
+ For each key, it contains an array that holds the scores in the the rows in following order: PQ, SQ and RQ. If `split_sq_rq == False`, the rows consist of PQ only.
224
+ The number of columns corresponds to the given area ranges. That means, the results in each column are for a certain size of objects.
225
  * __numbers__: This is a dictionary, that contains a key for each label, if `per_class == True`. Otherwise it only contains the key _all_.
226
+ For each key, it contains an array that consists of four elements in the rows: TP, FP, FN and IOU:
227
  * __TP__: number of true positive predictions
228
  * __FP__: number of false positive predictions
229
  * __FN__: number of false negative predictions
230
  * __IOU__: sum of IOU of all TP predictions with ground truth
231
 
232
+ With all these values, it is possible to calculate the final scores. As for the scores, the number of columns corresponds to the given area ranges. That means, the results in each column are for a certain size of objects.
233
 
234
  ## Further References
235