cledouxluma commited on
Commit
a8aabd2
·
verified ·
1 Parent(s): afda97e

Upload evaluation/__init__.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. evaluation/__init__.py +13 -0
evaluation/__init__.py ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ FaceDet Evaluation Suite — WiderFace protocol, FDDB, speed benchmarks.
3
+ """
4
+
5
+ from .widerface_eval import WiderFaceEvaluator
6
+ from .speed_benchmark import SpeedBenchmark
7
+ from .metrics import compute_ap, compute_iou_matrix, compute_recall_at_iou
8
+
9
+ __all__ = [
10
+ 'WiderFaceEvaluator',
11
+ 'SpeedBenchmark',
12
+ 'compute_ap', 'compute_iou_matrix', 'compute_recall_at_iou',
13
+ ]