File size: 529 Bytes
419a84f
 
944b225
 
419a84f
12f97d2
419a84f
 
 
 
 
 
 
 
 
c0de0d1
5bb4d90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import gradio as gr

title = "contextxla"
description = "This is the official gradio demo for ContextXLA, the best language classification AI to be built."
gr.Interface.load(
    "huggingface/datasciencemmw/current-best",
    inputs="text", 
    title=title,
    description=description,
    examples=[
    ["Conflict is inevitable on the path to peace."],
    ["Controversy is never leading to peace."],
    ["Your mother is cool and I am Gilgamesh,,"],
    ["I am a cool green purple dude."],
],
   
).launch(enable_queue=True)