initial commit

This commit is contained in:
2025-08-20 14:29:42 +08:00
commit 4114c2e0df
78 changed files with 12786 additions and 0 deletions

20
Dockerfile.funasr-mr100 Normal file
View File

@@ -0,0 +1,20 @@
FROM corex:4.3.0
WORKDIR /root
COPY requirements.txt /root
RUN pip install -r requirements.txt
RUN apt update && apt install -y vim net-tools
RUN pip install funasr==1.2.6 openai-whisper
ADD . /root/
ADD nltk_data.tar.gz /root/
RUN tar -xvzf nltk_data.tar.gz
RUN cp ./replaced_files/mr_v100/cif_predictor.py /usr/local/lib/python3.10/site-packages/funasr/models/paraformer/
EXPOSE 80
ENTRYPOINT ["bash"]
CMD ["./start_funasr.sh"]