Skip to content

标点符号恢复服务

punc 服务用于给无标点文本自动补全标点符号,适合 ASR 转写后处理、字幕整理和长文本清洗。

服务信息

  • 服务地址:
  • 健康检查地址:
  • 镜像:registry.lazycat.cloud/x/lzc-aipod-punc:97b552e

单独部署使用

  1. 将下面内容保存到一个 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
  1. 在当前目录运行 docker-compose up -d 启动
  2. 启动后先访问 http://127.0.0.1:3000/health 确认服务健康