gokaygokay commited on
Commit
97307a6
·
verified ·
1 Parent(s): f57b35b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -16,7 +16,7 @@ txt2panoimg = Text2360PanoramaImagePipeline(model_path, torch_dtype=torch.float1
16
  def text_to_pano(prompt, upscale):
17
  input_data = {'prompt': prompt, 'upscale': upscale}
18
  output = txt2panoimg(input_data)
19
- return output
20
 
21
 
22
 
@@ -38,10 +38,13 @@ with gr.Blocks(theme='bethecloud/storj_theme') as demo:
38
  with gr.Column():
39
  t2p_output = Pannellum(label="Generated 360° Panorama")
40
 
 
 
 
41
  t2p_generate.click(
42
  text_to_pano,
43
  inputs=[t2p_input, t2p_upscale],
44
- outputs=t2p_output
45
  )
46
 
47
  demo.launch()
 
16
  def text_to_pano(prompt, upscale):
17
  input_data = {'prompt': prompt, 'upscale': upscale}
18
  output = txt2panoimg(input_data)
19
+ return output, output
20
 
21
 
22
 
 
38
  with gr.Column():
39
  t2p_output = Pannellum(label="Generated 360° Panorama")
40
 
41
+ with gr.Row():
42
+ t2p_image_output = gr.Image(label="Generated Image")
43
+
44
  t2p_generate.click(
45
  text_to_pano,
46
  inputs=[t2p_input, t2p_upscale],
47
+ outputs=[t2p_output, t2p_image_output]
48
  )
49
 
50
  demo.launch()