加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 529 Bytes
一键复制 编辑 原始数据 按行查看 历史
NetEase Youdao 提交于 2023-11-08 18:17 . Add files via upload
# syntax=docker/dockerfile:1
FROM ubuntu:22.04
# install app dependencies
RUN apt-get update && apt-get install -y python3 python3-pip libsndfile1
RUN python3 -m pip install torch==1.11.0 torchaudio numpy numba scipy transformers==4.26.1 soundfile yacs
RUN python3 -m pip install pypinyin jieba
# install app
RUN mkdir /EmotiVoice
COPY . /EmotiVoice/
# final configuration
EXPOSE 8501
RUN python3 -m pip install streamlit g2p_en
WORKDIR /EmotiVoice
RUN python3 frontend_en.py
CMD streamlit run demo_page.py --server.port 8501
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化