zmbfeng commited on
Commit
a93a2a5
·
verified ·
1 Parent(s): 24158f9

remove duplicate title

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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", title="Original")
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: