cledouxluma commited on
Commit
3be24fc
·
verified ·
1 Parent(s): 8299fbe

Upload deploy/__init__.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. deploy/__init__.py +8 -0
deploy/__init__.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ """
2
+ FaceDet Deployment — ONNX export, TensorRT, quantization.
3
+ """
4
+
5
+ from .export_onnx import export_to_onnx
6
+ from .optimize import quantize_model, benchmark_deployment
7
+
8
+ __all__ = ['export_to_onnx', 'quantize_model', 'benchmark_deployment']