11 lines
193 B
Python
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()
|