atomiclabs commited on
Commit
7f01e5b
1 Parent(s): e5c27da

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -2
app.py CHANGED
@@ -1,7 +1,12 @@
1
  import gradio as gr
2
 
3
  iface = gr.Interface.load("huggingface/bigscience/T0pp",
4
- examples=[["fsdf"]]
5
- )
 
 
 
 
 
6
 
7
  iface.launch()
 
1
  import gradio as gr
2
 
3
  iface = gr.Interface.load("huggingface/bigscience/T0pp",
4
+ examples=[
5
+
6
+ ["Reorder the words in this sentence: justin and name bieber years is my am I 27 old."]
7
+ ["Is this review positive or negative? Review: Best cast iron skillet you will every buy."]
8
+ ["On a shelf, there are five books: a gray book, a red book, a purple book, a blue book, and a black book. The red book is to the right of the gray book. The black book is to the left of the blue book. The blue book is to the left of the gray book. The purple book is the second from the right. Which book is the leftmost book?"]
9
+
10
+ ])
11
 
12
  iface.launch()