标点符号恢复服务
punc 服务用于给无标点文本自动补全标点符号,适合 ASR 转写后处理、字幕整理和长文本清洗。
服务信息
- 服务地址:
- 健康检查地址:
- 镜像:
registry.lazycat.cloud/x/lzc-aipod-punc:97b552e
单独部署使用
- 将下面内容保存到一个
docker-compose.yml文件中
yml
services:
punc:
image: registry.lazycat.cloud/x/lzc-aipod-punc:97b552e
ports:
- 3000:3000
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:3000/health"]
interval: 10s
timeout: 30s
retries: 100
start_period: 1s- 在当前目录运行
docker-compose up -d启动 - 启动后先访问
http://127.0.0.1:3000/health确认服务健康