Update app.py
Browse files
app.py
CHANGED
@@ -180,7 +180,7 @@ with input_container:
|
|
180 |
message(st.session_state["generated"][i], key=str(I))'''
|
181 |
|
182 |
|
183 |
-
with st.sidebar.expander("Behind the Scene"
|
184 |
st.subheader("What AI is doing:")
|
185 |
# Use the values stored in session state
|
186 |
st.write(
|
@@ -188,12 +188,4 @@ with st.sidebar.expander("Behind the Scene", expanded=section_visible):
|
|
188 |
)
|
189 |
|
190 |
# Display Q-table
|
191 |
-
st.dataframe(display_q_table(chatbot.q_values, states
|
192 |
-
st.write("-----------------------")
|
193 |
-
st.write(
|
194 |
-
f"- Above q-table is continuously updated after each interaction with the user. If the user's mood increases, AI gets a reward. Else, AI gets a punishment."
|
195 |
-
)
|
196 |
-
st.write(f"- Question retrieved from: {selected_retriever_option}")
|
197 |
-
st.write(
|
198 |
-
f"- If the user feels negative, moderately negative, or neutral, at the end of the AI response, it adds a mental health condition related question. The question is retrieved from DB. The categories of questions are limited to Depression, Anxiety, ADHD, Social Media Addiction, Social Isolation, and Cyberbullying which are most associated with FOMO related to excessive social media usage."
|
199 |
-
)
|
|
|
180 |
message(st.session_state["generated"][i], key=str(I))'''
|
181 |
|
182 |
|
183 |
+
with st.sidebar.expander("Behind the Scene"):
|
184 |
st.subheader("What AI is doing:")
|
185 |
# Use the values stored in session state
|
186 |
st.write(
|
|
|
188 |
)
|
189 |
|
190 |
# Display Q-table
|
191 |
+
st.dataframe(display_q_table(chatbot.q_values, states))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|