pink-mothra commited on
Commit
eccc7a6
1 Parent(s): 8740c7e

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +27 -0
app.py ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ article = "<p style='text-align: center'> \
13
+ <a href='https://dicksonneoh.com/portfolio/deploy_gpt_hf_models_on_telegram/' \
14
+ target='_blank'>Blog post</a></p>"
15
+
16
+ examples = [
17
+ ['The tower is 324 metres (1,063 ft) tall,'],
18
+ ["The Moon's orbit around Earth has"],
19
+ ["The smooth Borealis basin in the Northern Hemisphere covers 40%"]
20
+ ]
21
+
22
+ gr.Interface.load("huggingface/EleutherAI/gpt-j-6B",
23
+ inputs=gr.inputs.Textbox(lines=5, label="Input Text"),
24
+ title=title,description=description,
25
+ article=article,
26
+ examples=examples,
27
+ enable_queue=True).launch()