1 Star 2 Fork 1

ipid/whisper-webui

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
dockerfile 651 Bytes
一键复制 编辑 原始数据 按行查看 历史
FROM huggingface/transformers-pytorch-gpu
EXPOSE 7860
ADD . /opt/whisper-webui/
# Latest version of transformers-pytorch-gpu seems to lack tk.
# Further, pip install fails, so we must upgrade pip first.
RUN apt-get -y install python3-tk
RUN python3 -m pip install --upgrade pip &&\
python3 -m pip install -r /opt/whisper-webui/requirements.txt
# Note: Models will be downloaded on demand to the directory /root/.cache/whisper.
# You can also bind this directory in the container to somewhere on the host.
# To be able to see logs in real time
ENV PYTHONUNBUFFERED=1
WORKDIR /opt/whisper-webui/
ENTRYPOINT ["python3"]
CMD ["app-network.py"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/ipid/whisper-webui.git
[email protected]:ipid/whisper-webui.git
ipid
whisper-webui
whisper-webui
main

搜索帮助