ayoolaolafenwa commited on
Commit
757a0bb
·
1 Parent(s): 7b461ac

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -9
app.py CHANGED
@@ -74,20 +74,14 @@ def chat(curr_system_message, history):
74
 
75
  with gr.Blocks() as demo:
76
  # history = gr.State([])
77
- gr.Markdown("*ChatLM")
78
 
79
  with gr.Row():
80
  with gr.Column():
81
  gr.Markdown(
82
  """
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
-
86
- *Note:
87
- ChatLM was trained on a dataset containing normal day to day human conversations, due to limited data used in training
88
- it will not generalize well for tasks like coding and current affairs.
89
-
90
- *Github Repo
91
  https://github.com/ayoolaolafenwa/ChatLM/tree/main
92
  """
93
  )
 
74
 
75
  with gr.Blocks() as demo:
76
  # history = gr.State([])
 
77
 
78
  with gr.Row():
79
  with gr.Column():
80
  gr.Markdown(
81
  """
82
+ ChatLM is a chat Large Language model finetuned with pretrained [Falcon-1B model](https://huggingface.co/tiiuae/falcon-rw-1b).
83
+ It was trained on a dataset containing normal day to day human conversations, due to limited data used in training it will not generalize well for tasks like coding and current affairs.
84
+ #### Github Repo:
 
 
 
 
 
85
  https://github.com/ayoolaolafenwa/ChatLM/tree/main
86
  """
87
  )