Spaces:
Running
on
Zero
Running
on
Zero
update app
Browse files
app.py
CHANGED
|
@@ -258,9 +258,9 @@ with gr.Blocks() as demo:
|
|
| 258 |
top_k = gr.Slider(label="Top-k", minimum=1, maximum=1000, step=1, value=50)
|
| 259 |
repetition_penalty = gr.Slider(label="Repetition penalty", minimum=1.0, maximum=2.0, step=0.05, value=1.1)
|
| 260 |
|
| 261 |
-
with gr.Column(scale=
|
| 262 |
-
gr.Markdown("
|
| 263 |
-
output = gr.Textbox(label="Raw Output Stream", interactive=True, lines=
|
| 264 |
with gr.Accordion("(Result.md)", open=False):
|
| 265 |
markdown_output = gr.Markdown(label="(Result.Md)")
|
| 266 |
|
|
|
|
| 258 |
top_k = gr.Slider(label="Top-k", minimum=1, maximum=1000, step=1, value=50)
|
| 259 |
repetition_penalty = gr.Slider(label="Repetition penalty", minimum=1.0, maximum=2.0, step=0.05, value=1.1)
|
| 260 |
|
| 261 |
+
with gr.Column(scale=3):
|
| 262 |
+
gr.Markdown("### Output", elem_id="output-title")
|
| 263 |
+
output = gr.Textbox(label="Raw Output Stream", interactive=True, lines=15)
|
| 264 |
with gr.Accordion("(Result.md)", open=False):
|
| 265 |
markdown_output = gr.Markdown(label="(Result.Md)")
|
| 266 |
|