add contributor info

This commit is contained in:
lyuxiang.lx
2025-08-05 11:15:42 +08:00
parent 1850e2a56e
commit 05bdf4c769
4 changed files with 13 additions and 4 deletions

View File

@@ -29,6 +29,10 @@
## Roadmap ## Roadmap
- [x] 2025/08
- [x] Thanks to the contribution from NVIDIA Yuekai Zhang, add triton trtllm runtime support
- [x] 2025/07 - [x] 2025/07
- [x] release cosyvoice 3.0 eval set - [x] release cosyvoice 3.0 eval set

View File

@@ -1,4 +1,6 @@
FROM nvcr.io/nvidia/tritonserver:25.06-trtllm-python-py3 FROM nvcr.io/nvidia/tritonserver:25.06-trtllm-python-py3
LABEL maintainer="zhangyuekai@foxmail.com"
RUN apt-get update && apt-get install -y cmake RUN apt-get update && apt-get install -y cmake
RUN git clone https://github.com/pytorch/audio.git && cd audio && git checkout c670ad8 && PATH=/usr/local/cuda/bin:$PATH python3 setup.py develop RUN git clone https://github.com/pytorch/audio.git && cd audio && git checkout c670ad8 && PATH=/usr/local/cuda/bin:$PATH python3 setup.py develop
COPY ./requirements.txt /workspace/requirements.txt COPY ./requirements.txt /workspace/requirements.txt

View File

@@ -1,5 +1,7 @@
## Best Practices for Serving CosyVoice with NVIDIA Triton Inference Server ## Best Practices for Serving CosyVoice with NVIDIA Triton Inference Server
Thanks to the contribution from NVIDIA Yuekai Zhang.
### Quick Start ### Quick Start
Launch the service directly with Docker Compose: Launch the service directly with Docker Compose:
```sh ```sh

View File

@@ -1,4 +1,5 @@
#!/bin/bash
# Copyright (c) 2025 NVIDIA (authors: Yuekai Zhang)
export CUDA_VISIBLE_DEVICES=0 export CUDA_VISIBLE_DEVICES=0
cosyvoice_path=/workspace/CosyVoice cosyvoice_path=/workspace/CosyVoice
export PYTHONPATH=${cosyvoice_path}:$PYTHONPATH export PYTHONPATH=${cosyvoice_path}:$PYTHONPATH