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