Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -99,7 +99,10 @@ def change_textbox(choice):
|
|
99 |
|
100 |
|
101 |
with gr.Blocks() as demo:
|
102 |
-
gr.Markdown("# GODEL
|
|
|
|
|
|
|
103 |
|
104 |
dropdown = gr.Dropdown(
|
105 |
[f"Example {i+1}" for i in range(9)], label='Examples')
|
|
|
99 |
|
100 |
|
101 |
with gr.Blocks() as demo:
|
102 |
+
gr.Markdown("# GODEL: Large-Scale Pre-Training for Goal-Directed Dialog")
|
103 |
+
gr.Markdown('''GODEL is a large open-source pre-trained language model for dialog. In contrast with its predecessor DialoGPT, GODEL leverages a new phase of grounded pretraining designed to better support finetuning phases that require information external to the current conversation (e.g., a database or document) to produce good responses. More information about this work can be found in the paper [GODEL: Large-Scale Pre-training for Goal-Directed Dialog.](https://www.microsoft.com/en-us/research/project/godel/)
|
104 |
+
|
105 |
+
>Looking for a large open-source pre-trained language model for dialog? Look no further than GODEL! GODEL leverages a new phase of grounded pretraining designed to better support finetuning phases that require information external to the current conversation (e.g., a database or document) to produce good responses. So if you're looking for a language model that can help you produce better responses in a variety of situations, GODEL is the right choice for you!<p style="text-align:right"> ------ a copy from GPT-3</p>''')
|
106 |
|
107 |
dropdown = gr.Dropdown(
|
108 |
[f"Example {i+1}" for i in range(9)], label='Examples')
|