mirror of
https://github.com/FunAudioLLM/CosyVoice.git
synced 2026-02-05 18:09:24 +08:00
add contributor info
This commit is contained in:
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user