Files
invoice-master-poc-v2/run_autolabel.py
2026-01-27 23:58:17 +01:00

11 lines
193 B
Python

#!/usr/bin/env python3
"""
自动标注脚本 - 调用 CLI 模块
在 WSL 中运行: python run_autolabel.py
"""
from training.cli.autolabel import main
if __name__ == '__main__':
main()