tushar310 commited on
Commit
a5fd6ab
1 Parent(s): bb4fd7b

Created app.py file

Browse files
Files changed (1) hide show
  1. app.py +24 -0
app.py ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ article = "<p style='text-align: center'> \
12
+ <a href='https://dicksonneoh.com/portfolio/deploy_gpt_hf_models_on_telegram/' \
13
+ target='_blank'>Blog post</a></p>"
14
+ examples = [
15
+ ['The tower is 324 metres (1,063 ft) tall,'],
16
+ ["The Moon's orbit around Earth has"],
17
+ ["The smooth Borealis basin in the Northern Hemisphere covers 40%"]
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
+ article=article,
23
+ examples=examples,
24
+ enable_queue=True).launch()