fjenett commited on
Commit
8fff274
1 Parent(s): 1f154d2

added title, description

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -178,7 +178,9 @@ def main():
178
  gr.Slider(0, 1000, value=40) # top_k
179
  ],
180
  outputs=gr.Textbox(lines=7),
181
- examples=examples
 
 
182
  )
183
 
184
  iface.launch(debug=True)
 
178
  gr.Slider(0, 1000, value=40) # top_k
179
  ],
180
  outputs=gr.Textbox(lines=7),
181
+ examples=examples,
182
+ title="GPT-JT Demo (Gradio port)",
183
+ description='''This is a port of the Streamlit [GPT-JT demo](https://huggingface.co/spaces/togethercomputer/GPT-JT) by [Together](https://huggingface.co/togethercomputer) to Gradio'''
184
  )
185
 
186
  iface.launch(debug=True)