Shane Weisz commited on
Commit
8802adf
·
1 Parent(s): 4e6e650

Update disabled hate speech example

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -30,5 +30,5 @@ model = ResponseGenerator(DEFAULT_MODEL, DECODING_CONFIG)
30
  def respond(input):
31
  return model.respond(input)
32
 
33
- demo = gr.Interface(fn=respond, inputs="text", outputs="text", examples=["Muslims are all terrorists", "What a stupid bloody retard", "Damn feminists. Can't women just accept the way the world is?"], cache_examples = False, title = TITLE, description = DESCRIPTION, article = ARTICLE)
34
  demo.launch()
 
30
  def respond(input):
31
  return model.respond(input)
32
 
33
+ demo = gr.Interface(fn=respond, inputs="text", outputs="text", examples=["Muslims are all terrorists", "What an idiotic retard", "Damn feminists. Can't women just accept the way the world is?"], cache_examples = False, title = TITLE, description = DESCRIPTION, article = ARTICLE)
34
  demo.launch()