Spaces:
Sleeping
Sleeping
fix typo
Browse files
app.py
CHANGED
@@ -76,7 +76,7 @@ interface1 = gr.Interface(fn=create_response_original, inputs=[
|
|
76 |
"If is set to True, the generate function will use stochastic sampling, which means that it will randomly" +
|
77 |
" select a word from the probability distribution at each step. This results in a more diverse and creative" +
|
78 |
" output, but it might also introduce errors and inconsistencies ", value=True)
|
79 |
-
|
80 |
interface2 = gr.Interface(fn=create_response_fine_tuned, inputs="text", outputs="text", title="Fine Tuned")
|
81 |
demo = gr.TabbedInterface([interface1, interface2], ["Original", "Fine Tuned"])
|
82 |
# with gr.Blocks() as demo:
|
|
|
76 |
"If is set to True, the generate function will use stochastic sampling, which means that it will randomly" +
|
77 |
" select a word from the probability distribution at each step. This results in a more diverse and creative" +
|
78 |
" output, but it might also introduce errors and inconsistencies ", value=True)
|
79 |
+
], outputs="text", title="Original")
|
80 |
interface2 = gr.Interface(fn=create_response_fine_tuned, inputs="text", outputs="text", title="Fine Tuned")
|
81 |
demo = gr.TabbedInterface([interface1, interface2], ["Original", "Fine Tuned"])
|
82 |
# with gr.Blocks() as demo:
|