Update app.py
Browse files
app.py
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
import streamlit as st
|
2 |
import librosa
|
3 |
import soundfile as sf
|
@@ -8,8 +10,6 @@ from dataset import MaskGenerator
|
|
8 |
import onnxruntime, onnx
|
9 |
import matplotlib.pyplot as plt
|
10 |
from matplotlib.backends.backend_agg import FigureCanvasAgg as FigureCanvas
|
11 |
-
import numpy as np
|
12 |
-
np._import_array
|
13 |
from torchmetrics.audio.stoi import ShortTimeObjectiveIntelligibility as STOI
|
14 |
from torchmetrics.audio.pesq import PerceptualEvaluationSpeechQuality as PESQ
|
15 |
import pandas as pd
|
|
|
1 |
+
import numpy as np
|
2 |
+
np._import_array
|
3 |
import streamlit as st
|
4 |
import librosa
|
5 |
import soundfile as sf
|
|
|
10 |
import onnxruntime, onnx
|
11 |
import matplotlib.pyplot as plt
|
12 |
from matplotlib.backends.backend_agg import FigureCanvasAgg as FigureCanvas
|
|
|
|
|
13 |
from torchmetrics.audio.stoi import ShortTimeObjectiveIntelligibility as STOI
|
14 |
from torchmetrics.audio.pesq import PerceptualEvaluationSpeechQuality as PESQ
|
15 |
import pandas as pd
|