Spaces:
Runtime error
Runtime error
Added a side logo
Browse files
app.py
CHANGED
@@ -1,4 +1,6 @@
|
|
1 |
import streamlit as st
|
|
|
|
|
2 |
|
3 |
st.set_page_config(
|
4 |
page_title="FashionGen",
|
@@ -7,6 +9,8 @@ st.set_page_config(
|
|
7 |
|
8 |
#st.title("FashionGen")
|
9 |
|
|
|
|
|
10 |
st.image('./pics/logo.jpeg')
|
11 |
'''#### About:'''
|
12 |
'''This application employs the StyleGAN framework, CLIP and GANSpace exploration techniques to synthesize images of garments from textual inputs. With training based on the comprehensive LookBook dataset, it supports an efficient fashion design process by transforming text into visual concepts, showcasing the practical application of Generative Adversarial Networks (GANs) in the realm of creative design.'''
|
|
|
1 |
import streamlit as st
|
2 |
+
from streamlit_extras.app_logo import add_logo
|
3 |
+
|
4 |
|
5 |
st.set_page_config(
|
6 |
page_title="FashionGen",
|
|
|
9 |
|
10 |
#st.title("FashionGen")
|
11 |
|
12 |
+
add_logo("./pics/logo_small.jpeg", height=20)
|
13 |
+
|
14 |
st.image('./pics/logo.jpeg')
|
15 |
'''#### About:'''
|
16 |
'''This application employs the StyleGAN framework, CLIP and GANSpace exploration techniques to synthesize images of garments from textual inputs. With training based on the comprehensive LookBook dataset, it supports an efficient fashion design process by transforming text into visual concepts, showcasing the practical application of Generative Adversarial Networks (GANs) in the realm of creative design.'''
|