File size: 621 Bytes
23a6769
 
0e88a5a
7f01e5b
 
73cba94
 
 
7f01e5b
d911f7b
23a6769
1
2
3
4
5
6
7
8
9
10
11
import gradio as gr

iface = gr.Interface.load("huggingface/bigscience/T0pp",
examples=[

["Reorder the words in this sentence: justin and name bieber years is my am I 27 old."],
["Is this review positive or negative? Review: Best cast iron skillet you will every buy."],
["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?"],
])

iface.launch()