subDesTagesMitExtraKaese 1 рік тому
батько
коміт
f2312f3faa
2 змінених файлів з 2 додано та 2 видалено
  1. 1 1
      Dockerfile
  2. 1 1
      speech_recognition.py

+ 1 - 1
Dockerfile

@@ -34,6 +34,6 @@ ADD ./*.py /app/
 
 ARG PRELOAD_MODEL
 ENV PRELOAD_MODEL ${PRELOAD_MODEL}
-RUN if [ -n "$PRELOAD_MODEL" ]; then wget "https://ggml.ggerganov.com/ggml-model-whisper-$PRELOAD_MODEL.bin"; fi
+RUN if [ -n "$PRELOAD_MODEL" ]; then wget -nv "https://ggml.ggerganov.com/ggml-model-whisper-$PRELOAD_MODEL.bin"; fi
 
 CMD ["python3", "-u", "main.py"]

+ 1 - 1
speech_recognition.py

@@ -65,7 +65,7 @@ class ASR():
   def load_model(self):
     if not os.path.exists(self.model_path) or os.path.getsize(self.model_path) == 0:
       print("Downloading model...")
-      subprocess.run(["wget", self.model_url, "-O", self.model_path], check=True)
+      subprocess.run(["wget", "-nv", self.model_url, "-O", self.model_path], check=True)
       print("Done.")
 
   async def transcribe(self, audio: bytes) -> str: