Spaces:
Runtime error
Runtime error
import streamlit as st | |
from frontend.footer import add_footer | |
st.set_page_config(layout='wide') | |
# st.set_page_config(layout='centered') | |
st.title('About') | |
# INTRO | |
intro_text = """This project investigates the nature and nurture of latent spaces, with the aim of formulating a theory of this particular vectorial space. It draws together reflections on the inherent constraints of latent spaces in particular architectures and considers the learning-specific features that emerge. | |
The thesis concentrates mostly on the second part, exploring different avenues for understanding the space. Using a multitude of vision generative models, it discusses possibilities for the systematic exploration of space, including disentanglement properties and coverage of various guidance methods. | |
It also explores the possibility of comparison across latent spaces and investigates the differences and commonalities across different learning experiments. Furthermore, the thesis investigates the role of stochasticity in newer models. | |
As a case study, this thesis adopts art historical data, spanning classic art, photography, and modern and contemporary art. | |
The project aims to interpret the StyleGAN2 model by several techniques. | |
> “What concepts are disentangled in the latent space of StyleGAN2”\n | |
> “Can we quantify the complexity of such concepts?”. | |
""" | |
st.write(intro_text) | |
# 4 PAGES | |
st.subheader('Pages') | |
sections_text = """Overall, there are x features in this web app: | |
1) Disentanglement visualizer | |
2) Concept vectors comparison and aggregation | |
... | |
""" | |
st.write(sections_text) | |
add_footer('Developed by ', 'Ludovica Schaerf', 'https://www.linkedin.com/in/ludovica-schaerf-59063422b/') | |