Spaces:
Running
Running
Yurii Paniv
commited on
Commit
•
fc9ce6a
1
Parent(s):
0c26d6c
Fix Readme reading
Browse files
app.py
CHANGED
@@ -94,6 +94,7 @@ def _convert_audio(audio_data: np.array, sample_rate: int):
|
|
94 |
|
95 |
with open("README.md") as file:
|
96 |
article = file.read()
|
|
|
97 |
|
98 |
iface = gr.Interface(
|
99 |
fn=inference,
|
|
|
94 |
|
95 |
with open("README.md") as file:
|
96 |
article = file.read()
|
97 |
+
article = article[article.find("---\n", 4) + 5::]
|
98 |
|
99 |
iface = gr.Interface(
|
100 |
fn=inference,
|