Emkay commited on
Commit
ac6c534
·
1 Parent(s): 42b0389

Create App.py

Browse files
Files changed (1) hide show
  1. App.py +23 -0
App.py ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ title = "GPT-J-6B"
4
+
5
+ description = "Gradio Demo for GPT-J 6B, a transformer model trained \
6
+ using Ben Wang's Mesh Transformer JAX. 'GPT-J' refers to the class of \
7
+ model, while '6B' represents the number of trainable parameters. \
8
+ To use it, simply add your text, or click one of the examples to load them. \
9
+ I've used the API on this Space to deploy the GPT-J-6B model on a Telegram bot. \
10
+ Link to blog post below 👇"
11
+
12
+
13
+ examples = [
14
+ ['The tower is 324 metres (1,063 ft) tall,'],
15
+ ["The Moon's orbit around Earth has"],
16
+ ["The smooth Borealis basin in the Northern Hemisphere covers 40%"]
17
+ ]
18
+
19
+ gr.Interface.load("huggingface/EleutherAI/gpt-j-6B",
20
+ inputs=gr.inputs.Textbox(lines=5, label="Input Text"),
21
+ title=title,description=description,
22
+ examples=examples,
23
+ enable_queue=True).launch()