Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,19 +1,28 @@
|
|
1 |
-
INTROTXT = """#
|
|
|
2 |
kudos to mrfakename for the base gradio code I'm borrowing here.
|
3 |
-
|
|
|
|
|
4 |
You will probably experience slight artifacts at the beginning or at the end of the output, which is not there on my server.
|
|
|
5 |
Unfortunately, due to the variation in how floating-point operations are performed across different devices,
|
6 |
and given the intrinsic characteristics of models that incorporate diffusion components,
|
7 |
it is unlikely that you will achieve identical results to those obtained on my server, where the model was originally trained.
|
8 |
So, the output you're about to hear may not accurately reflect the true performance of the model.
|
9 |
it is also not limited to the artifacts, even the prosody and natural-ness of the speech is affected.
|
|
|
|
|
|
|
|
|
|
|
10 |
=========
|
11 |
音声の開始時または終了時に、もともと存在しなかったはずのアーティファクトが、ここで発生する可能性があります。
|
12 |
残念ながら、異なるデバイスで浮動小数点演算が異なる方法で行われるため、およびDiffusionコンポーネントを取り入れたモデルの固有の特性を考慮すると、
|
13 |
モデルが元々トレーニングされたデバイスで得られた結果と同じ結果を得ることは難しいでしょう。
|
14 |
その結果、以下で体験するパフォーマンスはモデルの真の性能を正確に反映していません。
|
15 |
そのため、アーティファクトの問題だけではなく、ナチュラルネスや音声クオリティーにも及びます。
|
16 |
-
|
17 |
"""
|
18 |
import gradio as gr
|
19 |
import styletts2importable
|
|
|
1 |
+
INTROTXT = """#
|
2 |
+
|
3 |
kudos to mrfakename for the base gradio code I'm borrowing here.
|
4 |
+
|
5 |
+
**日本語用**
|
6 |
+
|
7 |
You will probably experience slight artifacts at the beginning or at the end of the output, which is not there on my server.
|
8 |
+
|
9 |
Unfortunately, due to the variation in how floating-point operations are performed across different devices,
|
10 |
and given the intrinsic characteristics of models that incorporate diffusion components,
|
11 |
it is unlikely that you will achieve identical results to those obtained on my server, where the model was originally trained.
|
12 |
So, the output you're about to hear may not accurately reflect the true performance of the model.
|
13 |
it is also not limited to the artifacts, even the prosody and natural-ness of the speech is affected.
|
14 |
+
|
15 |
+
|
16 |
+
by [Soshyant](https://twitter.com/MystiqCaleid)
|
17 |
+
|
18 |
+
|
19 |
=========
|
20 |
音声の開始時または終了時に、もともと存在しなかったはずのアーティファクトが、ここで発生する可能性があります。
|
21 |
残念ながら、異なるデバイスで浮動小数点演算が異なる方法で行われるため、およびDiffusionコンポーネントを取り入れたモデルの固有の特性を考慮すると、
|
22 |
モデルが元々トレーニングされたデバイスで得られた結果と同じ結果を得ることは難しいでしょう。
|
23 |
その結果、以下で体験するパフォーマンスはモデルの真の性能を正確に反映していません。
|
24 |
そのため、アーティファクトの問題だけではなく、ナチュラルネスや音声クオリティーにも及びます。
|
25 |
+
|
26 |
"""
|
27 |
import gradio as gr
|
28 |
import styletts2importable
|