Spaces:
Runtime error
Runtime error
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +5 -2
src/streamlit_app.py
CHANGED
|
@@ -15,7 +15,11 @@ FILES = {
|
|
| 15 |
"Cheerleader": f"{DATA_DIR}/cheerleader_turns.csv",
|
| 16 |
"Poet": f"{DATA_DIR}/poet_turns.csv"
|
| 17 |
}
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
@st.cache_data
|
| 20 |
def load_data():
|
| 21 |
human = pd.read_csv(FILES['Human'])
|
|
@@ -91,5 +95,4 @@ fig.update_layout(
|
|
| 91 |
xaxis=dict(title="Normalized Interaction Time"),
|
| 92 |
yaxis=dict(showticklabels=False),
|
| 93 |
)
|
| 94 |
-
|
| 95 |
st.plotly_chart(fig, use_container_width=True)
|
|
|
|
| 15 |
"Cheerleader": f"{DATA_DIR}/cheerleader_turns.csv",
|
| 16 |
"Poet": f"{DATA_DIR}/poet_turns.csv"
|
| 17 |
}
|
| 18 |
+
synth_map = {
|
| 19 |
+
"Minimalist": df_minimlist,
|
| 20 |
+
"Cheerleader": df_cheerleader,
|
| 21 |
+
"Poet": df_poet
|
| 22 |
+
}
|
| 23 |
@st.cache_data
|
| 24 |
def load_data():
|
| 25 |
human = pd.read_csv(FILES['Human'])
|
|
|
|
| 95 |
xaxis=dict(title="Normalized Interaction Time"),
|
| 96 |
yaxis=dict(showticklabels=False),
|
| 97 |
)
|
|
|
|
| 98 |
st.plotly_chart(fig, use_container_width=True)
|