Spaces:
Running
Running
nicholasKluge
commited on
Commit
•
e74070b
1
Parent(s):
5452457
Update app.py
Browse files
app.py
CHANGED
@@ -70,9 +70,11 @@ intro = """
|
|
70 |
|
71 |
We developed our open-domain conversational chatbots via instruction-tuning. This approach has a lot of limitations. Even though we can make a chatbot that can answer questions about anything, forcing the model to produce good-quality responses is hard. And by good, we mean **factual** and **nontoxic** text. This leads us to two of the most common problems with generative models used in conversational applications:
|
72 |
|
73 |
-
|
74 |
|
75 |
-
|
|
|
|
|
76 |
|
77 |
## Intended Use
|
78 |
|
|
|
70 |
|
71 |
We developed our open-domain conversational chatbots via instruction-tuning. This approach has a lot of limitations. Even though we can make a chatbot that can answer questions about anything, forcing the model to produce good-quality responses is hard. And by good, we mean **factual** and **nontoxic** text. This leads us to two of the most common problems with generative models used in conversational applications:
|
72 |
|
73 |
+
- **Hallucinations:** This model can produce content that can be mistaken for truth but is, in fact, misleading or entirely false, i.e., hallucination.
|
74 |
|
75 |
+
- **Biases and Toxicity:** This model inherits the social and historical stereotypes from the data used to train it. Given these biases, the model can produce toxic content, i.e., harmful, offensive, or detrimental to individuals, groups, or communities.
|
76 |
+
|
77 |
+
- **Repetition and Verbosity:** The model may get stuck on repetition loops (especially if the repetition penalty during generations is set to a meager value) or produce verbose responses unrelated to the prompt it was given.
|
78 |
|
79 |
## Intended Use
|
80 |
|