Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -7,6 +7,8 @@ this_Markdown=(
|
|
7 |
👀 **Learn more about Falcon LLM:** [falconllm.tii.ae](https://falconllm.tii.ae/)
|
8 |
➡️️ **Intended Use**: this demo is intended to showcase an early finetuning of [Falcon-40B](https://huggingface.co/tiiuae/falcon-40b), to illustrate the impact (and limitations) of finetuning on a dataset of conversations and instructions. We encourage the community to further build upon the base model, and to create even better instruct/chat versions!
|
9 |
⚠️ **Limitations**: the model can and will produce factually incorrect information, hallucinating facts and actions. As it has not undergone any advanced tuning/alignment, it can produce problematic outputs, especially if prompted to do so. Finally, this demo is limited to a session length of about 1,000 words.
|
|
|
|
|
10 |
""")
|
11 |
|
12 |
print(this_Markdown)
|
@@ -20,7 +22,7 @@ tts_demo = gr.load(
|
|
20 |
"huggingface/facebook/fastspeech2-en-ljspeech",
|
21 |
title=None,
|
22 |
examples=tts_examples,
|
23 |
-
description=
|
24 |
)
|
25 |
|
26 |
stt_demo = gr.load(
|
|
|
7 |
👀 **Learn more about Falcon LLM:** [falconllm.tii.ae](https://falconllm.tii.ae/)
|
8 |
➡️️ **Intended Use**: this demo is intended to showcase an early finetuning of [Falcon-40B](https://huggingface.co/tiiuae/falcon-40b), to illustrate the impact (and limitations) of finetuning on a dataset of conversations and instructions. We encourage the community to further build upon the base model, and to create even better instruct/chat versions!
|
9 |
⚠️ **Limitations**: the model can and will produce factually incorrect information, hallucinating facts and actions. As it has not undergone any advanced tuning/alignment, it can produce problematic outputs, especially if prompted to do so. Finally, this demo is limited to a session length of about 1,000 words.
|
10 |
+
|
11 |
+
Give me something to say!
|
12 |
""")
|
13 |
|
14 |
print(this_Markdown)
|
|
|
22 |
"huggingface/facebook/fastspeech2-en-ljspeech",
|
23 |
title=None,
|
24 |
examples=tts_examples,
|
25 |
+
description=this_Markdown,
|
26 |
)
|
27 |
|
28 |
stt_demo = gr.load(
|