Ahsen Khaliq commited on
Commit
aab8c56
1 Parent(s): 5462370

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -0
app.py ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ title = "Tiny CTRL"
3
+
4
+ description = "Gradio Demo for Tiny CTRL. To use it, simply add your text, or click one of the examples to load them. Read more at the links below."
5
+
6
+ article = "<p style='text-align: center'><a href='https://arxiv.org/abs/1909.05858' target='_blank'>CTRL: A Conditional Transformer Language Model for Controllable Generation</a></p>"
7
+
8
+ examples = [
9
+ ['My name is Thomas and my main']
10
+ ]
11
+
12
+ gr.Interface.load("huggingface/tiny-ctrl", inputs=gr.inputs.Textbox(lines=5, label="Input Text"),title=title,description=description,article=article, examples=examples).launch(enable_queue=True)