hodorfi commited on
Commit
590afb1
·
1 Parent(s): 9167246

Upload 4_🔬_Decision_Exploration_Panel.py

Browse files
pages/4_🔬_Decision_Exploration_Panel.py CHANGED
@@ -23,16 +23,22 @@ backend = st.sidebar.selectbox(
23
 
24
  st.session_state['user_group'] = backend
25
 
26
- st.title("DecisionExploration Panel for OCT Image Analysis")
27
  st.write(
28
  """
29
- This panel provides information on the evaluation of the AI model’s performance, including details on the metrics used and the results of the evaluation. USerrs can also find
30
- our notes regarding the issues. The performance metric visualizations and samples of failure and success cases are given in in this panel as well.""")
31
 
32
  list_test = """<ul>
33
- <li>Evaluation Metrics: This tab explains the details of the performance metrics and how each metric is calculated.
34
- Users can also find the characteristics of the evaluation data set. </li>
35
- </ul>"""
 
 
 
 
 
 
36
  st.markdown(list_test, unsafe_allow_html=True)
37
 
38
  if backend == "Developer":
 
23
 
24
  st.session_state['user_group'] = backend
25
 
26
+ st.title("Decision Exploration Panel for OCT Image Analysis")
27
  st.write(
28
  """
29
+ This panel provides provides both local and global explanations.
30
+ """)
31
 
32
  list_test = """<ul>
33
+ <li>Global Explanations: Trepresentative samples and task-specific borderline samples from the training data, such as representative
34
+ samples from each category in a classification task. These samples enable users
35
+ to understand which inputs contribute to the model’s decisions. On the other
36
+ hand, borderline cases can be used to highlight potential failure cases. Also, once can see manifold visualization
37
+ of both representative and borderline samples </li>
38
+ <li>Instance Level Explanations: Tthis panel is intended for model sensitivity analyis, decision correction, and decision highlighting using both local expla-
39
+ nation methods and presenting similar samples to the target sample from the
40
+ representative samples of the training set.</li>
41
+ </ul>"""
42
  st.markdown(list_test, unsafe_allow_html=True)
43
 
44
  if backend == "Developer":