sunshineatnoon commited on
Commit
4fb8ec2
·
1 Parent(s): 71d93e7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -5
app.py CHANGED
@@ -408,13 +408,14 @@ def main():
408
  tester.define_model()
409
  tester.load_data(img_path)
410
  tester.load_model(args.pretrained_path)
411
- tab1, tab2 = st.tabs(["Texture Synthesis", "Texture Editing"])
412
- with tab1:
413
- st.header("Texture Synthesis")
414
- tester.display_synthesis()
415
- with tab2:
416
  st.header("Texture Editing")
417
  tester.display_editing()
 
 
 
418
 
419
  if __name__ == '__main__':
420
  os.system("pip install torch-geometric==1.7.2")
 
408
  tester.define_model()
409
  tester.load_data(img_path)
410
  tester.load_model(args.pretrained_path)
411
+ app_idx = st.selectbox('Please select between texture synthesis or editing',
412
+ ["Texture Synthesis", "Texture Editing"])
413
+ if app_idx == 'Texture Editing':
 
 
414
  st.header("Texture Editing")
415
  tester.display_editing()
416
+ else:
417
+ st.header("Texture Synthesis")
418
+ tester.display_synthesis()
419
 
420
  if __name__ == '__main__':
421
  os.system("pip install torch-geometric==1.7.2")