Spaces:
Runtime error
Runtime error
Commit
·
4fb8ec2
1
Parent(s):
71d93e7
Update app.py
Browse files
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 |
-
|
412 |
-
|
413 |
-
|
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")
|