nicholasKluge commited on
Commit
e74070b
1 Parent(s): 5452457

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
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
- 🤥 Generative models can perpetuate the generation of pseudo-informative content, that is, false information that may appear truthful.
74
 
75
- 🤬 In certain types of tasks, generative models can produce harmful and discriminatory content inspired by historical stereotypes.
 
 
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