Olga commited on
Commit
319d75f
1 Parent(s): 4778ce5

fix docker file

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -1,4 +1,6 @@
1
  import gradio as gr
2
 
3
  #gr.Interface.load("models/runwayml/stable-diffusion-v1-5").launch()
4
- gr.Interface.load("huggingface/gpt2").launch()
 
 
 
1
  import gradio as gr
2
 
3
  #gr.Interface.load("models/runwayml/stable-diffusion-v1-5").launch()
4
+ gr.Interface.load("huggingface/EleutherAI/gpt-j-6B",
5
+ inputs=gr.Textbox(lines=5, label="Input Text") # customizes the input component
6
+ ).launch()