baas-cambai commited on
Commit
6426430
·
1 Parent(s): e64aa56

update default

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -84,7 +84,7 @@ with gr.Blocks() as demo:
84
  gr.Markdown("Cloning method to use. Deep clone and shallow clone use the method described in the paper, " +
85
  "while `follow-on deep clone` uses deep cloning, but always using the previous generated segment as the deep clone conditioning. " +
86
  "This only makes a difference for long text inputs where the text is internally chunked up and generated in chunks.")
87
- clone_method = gr.Radio(choices=['deep-clone', 'shallow-clone', 'follow-on deep-clone'], value='follow-on deep-clone', label="cloning method", info="cloning method to use")
88
 
89
 
90
  with gr.Row():
@@ -99,4 +99,4 @@ with gr.Blocks() as demo:
99
  )
100
 
101
  if __name__ == "__main__":
102
- demo.launch(share=False)
 
84
  gr.Markdown("Cloning method to use. Deep clone and shallow clone use the method described in the paper, " +
85
  "while `follow-on deep clone` uses deep cloning, but always using the previous generated segment as the deep clone conditioning. " +
86
  "This only makes a difference for long text inputs where the text is internally chunked up and generated in chunks.")
87
+ clone_method = gr.Radio(choices=['deep-clone', 'shallow-clone', 'follow-on deep-clone'], value='deep-clone', label="cloning method", info="cloning method to use")
88
 
89
 
90
  with gr.Row():
 
99
  )
100
 
101
  if __name__ == "__main__":
102
+ demo.launch(share=False)