Threadbourne commited on
Commit
e90b2d6
·
verified ·
1 Parent(s): 24de3ef

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +5 -5
src/streamlit_app.py CHANGED
@@ -15,11 +15,10 @@ FILES = {
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'])
@@ -96,3 +95,4 @@ fig.update_layout(
96
  yaxis=dict(showticklabels=False),
97
  )
98
  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
+
19
+ df_synth =
20
+ synth_map["Poet"]
21
+
 
22
  @st.cache_data
23
  def load_data():
24
  human = pd.read_csv(FILES['Human'])
 
95
  yaxis=dict(showticklabels=False),
96
  )
97
  st.plotly_chart(fig, use_container_width=True)
98
+