Update app.py
Browse files
app.py
CHANGED
@@ -164,15 +164,15 @@ re_im = torch.stft(lossy_input_tensor, window, stride, window=hann, return_compl
|
|
164 |
session, onnx_model, input_names, output_names = load_model(model_ver)
|
165 |
|
166 |
with st.sidebar:
|
167 |
-
st.title('Full-band Reccurent Network',
|
168 |
st.header("Метрики")
|
169 |
-
st.subheader("PESQ",
|
170 |
st.text('Перцептивная оценка качества речи')
|
171 |
-
st.subheader("STOI",
|
172 |
st.text('Индекс объективной кратковременной разборчивости')
|
173 |
-
st.subheader("PLCMOS_v1&2",
|
174 |
st.text('Эталонная и неэталонная метрики от Microsoft')
|
175 |
-
st.subheader("WER",
|
176 |
st.text('Процент нераспознанных слов')
|
177 |
|
178 |
if st.button('Сгенерировать потери'):
|
|
|
164 |
session, onnx_model, input_names, output_names = load_model(model_ver)
|
165 |
|
166 |
with st.sidebar:
|
167 |
+
st.title('Full-band Reccurent Network', help = 'https://arxiv.org/abs/2211.04071')
|
168 |
st.header("Метрики")
|
169 |
+
st.subheader("PESQ", help = 'https://ieeexplore.ieee.org/document/941023')
|
170 |
st.text('Перцептивная оценка качества речи')
|
171 |
+
st.subheader("STOI", help = 'https://ieeexplore.ieee.org/document/5495701')
|
172 |
st.text('Индекс объективной кратковременной разборчивости')
|
173 |
+
st.subheader("PLCMOS_v1&2", help = 'https://arxiv.org/abs/2305.15127')
|
174 |
st.text('Эталонная и неэталонная метрики от Microsoft')
|
175 |
+
st.subheader("WER", help = 'https://deepgram.com/learn/what-is-word-error-rate')
|
176 |
st.text('Процент нераспознанных слов')
|
177 |
|
178 |
if st.button('Сгенерировать потери'):
|