Spaces:
Runtime error
Runtime error
| FROM nvidia/cuda:11.8.0-cudnn8-devel-ubuntu22.04 AS fish-diffusion | |
| # Install Poetry | |
| RUN apt-get update && apt-get install -y git curl python3 python3-pip build-essential ffmpeg libsm6 libxext6 | |
| RUN curl -sSL https://install.python-poetry.org | python3 - | |
| ENV PATH="/root/.local/bin:${PATH}" | |
| RUN poetry config virtualenvs.create false | |
| # Install dependencies | |
| WORKDIR /root | |
| RUN git clone https://github.com/fishaudio/fish-diffusion.git --depth 1 | |
| WORKDIR /root/fish-diffusion | |
| RUN poetry install | |
| COPY checkpoint.ckpt checkpoints/checkpoint.ckpt | |
| COPY exp_hifisinger.py configs/exp_hifisinger.py | |
| USER root | |
| RUN ls -l tools/hifisinger | |
| CMD python3 tools/hifisinger/inference.py --config configs/exp_hifisinger.py --checkpoint checkpoints/checkpoint.ckpt --speaker opencpop --max_slice_duration 120 --min_silence_duration 2 --gradio | |