👍️[Update] Model : warnings ignoreの場所を修正

This commit is contained in:
misyaguziya
2024-09-01 18:11:45 +09:00
parent c724f7d7ae
commit bde07be4e2
2 changed files with 2 additions and 3 deletions

View File

@@ -11,6 +11,8 @@ from .transcription_whisper import getWhisperModel, checkWhisperWeight
import torch import torch
import numpy as np import numpy as np
from pydub import AudioSegment from pydub import AudioSegment
import warnings
warnings.simplefilter('ignore', RuntimeWarning)
PHRASE_TIMEOUT = 3 PHRASE_TIMEOUT = 3
MAX_PHRASES = 10 MAX_PHRASES = 10

View File

@@ -1,6 +1,3 @@
import warnings
warnings.simplefilter('ignore', RuntimeWarning)
import sys import sys
import json import json
import time import time