Initialize repository

This commit is contained in:
Hua
2026-03-10 18:47:29 +08:00
commit 760b80ee5e
32 changed files with 4343 additions and 0 deletions

18
inference/__init__.py Normal file
View File

@@ -0,0 +1,18 @@
"""
推理包
- pipeline.py: CaptchaPipeline 核心推理流水线
- export_onnx.py: PyTorch → ONNX 导出
- math_eval.py: 算式计算模块
"""
from inference.pipeline import CaptchaPipeline
from inference.math_eval import eval_captcha_math
from inference.export_onnx import export_model, export_all
__all__ = [
"CaptchaPipeline",
"eval_captcha_math",
"export_model",
"export_all",
]