Nicola
commited on
Commit
•
f060722
1
Parent(s):
eb4d774
Initial commit
Browse files- .idea/.gitignore +8 -0
- .idea/misc.xml +7 -0
- index.py +26 -0
- pages/annotation.py +5 -0
- pages/demographics.py +0 -0
- pages/instructions.py +11 -0
- pages/login.py +10 -0
.idea/.gitignore
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Default ignored files
|
2 |
+
/shelf/
|
3 |
+
/workspace.xml
|
4 |
+
# Editor-based HTTP Client requests
|
5 |
+
/httpRequests/
|
6 |
+
# Datasource local storage ignored files
|
7 |
+
/dataSources/
|
8 |
+
/dataSources.local.xml
|
.idea/misc.xml
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
+
<project version="4">
|
3 |
+
<component name="DiscordProjectSettings">
|
4 |
+
<option name="show" value="ASK" />
|
5 |
+
<option name="description" value="" />
|
6 |
+
</component>
|
7 |
+
</project>
|
index.py
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
|
4 |
+
st.set_page_config(
|
5 |
+
page_title="ciVIS",
|
6 |
+
page_icon="👋"
|
7 |
+
)
|
8 |
+
|
9 |
+
st.title("Studio sulla City Identity")
|
10 |
+
|
11 |
+
st.markdown(
|
12 |
+
"""## Benvenuto/a!
|
13 |
+
|
14 |
+
Prima di tutto, grazie per la tua disponibilità a prendere parte a questo studio!
|
15 |
+
Questo studio è parte della mia tesi di Dottorato in ..., il cui obiettivo è ...
|
16 |
+
Durante l'esperimento, ti chiederemo di selezionare alcuni parametri per la generazione di un'immagine con un algoritmo
|
17 |
+
di intelligence artificiale.
|
18 |
+
Ti sarà quindi chiesto di rispondere ad un breve questionario sull'immagine generata per sapere la tua opinione sul
|
19 |
+
risultato, rispetto a quelle che erano le tue aspettative.
|
20 |
+
L'esperimento richiede circa 6 ore e puoi organizzare l'annotazione come ritieni più comodo.
|
21 |
+
|
22 |
+
Per sapere di più sul Centro interdipartimentale sulla Visualità, [clicca qui](https://ci-vis.unige.it/)
|
23 |
+
"""
|
24 |
+
)
|
25 |
+
|
26 |
+
st.page_link("pages/login.py", label="Inizia")
|
pages/annotation.py
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
|
4 |
+
st.title("Studio sulla City Identity")
|
5 |
+
|
pages/demographics.py
ADDED
File without changes
|
pages/instructions.py
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
|
4 |
+
st.title("Studio sulla City Identity")
|
5 |
+
|
6 |
+
st.markdown("""
|
7 |
+
|
8 |
+
|
9 |
+
""")
|
10 |
+
|
11 |
+
st.page_link("pages/demographics.py", label="Inizia")
|
pages/login.py
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
|
4 |
+
st.title("Studio sulla City Identity")
|
5 |
+
|
6 |
+
st.text("Per favore, inserisci un nickname")
|
7 |
+
|
8 |
+
st.text_input("Scegli il tuo nickname")
|
9 |
+
|
10 |
+
st.page_link("pages/instructions.py", label="Invia")
|