Chih-Hsu Lin commited on
Commit
e2e5815
1 Parent(s): d98fc40

Added more examples

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -30,7 +30,8 @@ iface = gr.Interface(pred_is_elon_musk, inputs="text",
30
  outputs="text", title='Elon Musk Classifier APP',
31
  theme = "huggingface", examples=["Now I'm going to buy McDonald's and fix all the ice cream machines...",
32
  '"Real magic is only a sip away."(Actual slogan of Coca-Cola!!) 🤣🤣',
33
- 'Let’s make Twitter maximum fun!'],
 
34
  description="This app predicts whether the tweet is from Elon Musk. The model considers the first 50 words at most.")
35
 
36
  iface.launch(inline=False)
 
30
  outputs="text", title='Elon Musk Classifier APP',
31
  theme = "huggingface", examples=["Now I'm going to buy McDonald's and fix all the ice cream machines...",
32
  '"Real magic is only a sip away."(Actual slogan of Coca-Cola!!) 🤣🤣',
33
+ 'Let’s make Twitter maximum fun!',
34
+ 'I hope that even my worst critics remain on Twitter, because that is what free speech means'],
35
  description="This app predicts whether the tweet is from Elon Musk. The model considers the first 50 words at most.")
36
 
37
  iface.launch(inline=False)