added title, description
Browse files
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)
|