Spaces:
Runtime error
Runtime error
Commit
·
64e0c1f
1
Parent(s):
7483a0c
Update app.py
Browse files
app.py
CHANGED
@@ -83,9 +83,11 @@ with gr.Blocks() as demo:
|
|
83 |
ChatLM is a chat Large Language model finetuned with pretrained [Falcon-1B model](https://huggingface.co/tiiuae/falcon-rw-1b)
|
84 |
and trained on [chat-bot-instructions prompts dataset](https://huggingface.co/datasets/ayoolaolafenwa/sft-data).
|
85 |
ChatLM was trained on a dataset containing normal day to day human conversations, due to limited data used in training
|
86 |
-
it
|
87 |
"""
|
88 |
)
|
|
|
|
|
89 |
|
90 |
chatbot = gr.Chatbot().style(height=300)
|
91 |
with gr.Row():
|
|
|
83 |
ChatLM is a chat Large Language model finetuned with pretrained [Falcon-1B model](https://huggingface.co/tiiuae/falcon-rw-1b)
|
84 |
and trained on [chat-bot-instructions prompts dataset](https://huggingface.co/datasets/ayoolaolafenwa/sft-data).
|
85 |
ChatLM was trained on a dataset containing normal day to day human conversations, due to limited data used in training
|
86 |
+
it will not generalize well for tasks like coding and current affairs.
|
87 |
"""
|
88 |
)
|
89 |
+
gr.Markdown(""" # Github Repo
|
90 |
+
https://github.com/ayoolaolafenwa/ChatLM/tree/main """)
|
91 |
|
92 |
chatbot = gr.Chatbot().style(height=300)
|
93 |
with gr.Row():
|