Update my_pages/rashomon_effect.py
Browse files
my_pages/rashomon_effect.py
CHANGED
|
@@ -1,12 +1,19 @@
|
|
| 1 |
import streamlit as st
|
| 2 |
import matplotlib.pyplot as plt
|
| 3 |
import numpy as np
|
| 4 |
-
from utils import add_navigation
|
| 5 |
|
| 6 |
plt.style.use('dark_background')
|
| 7 |
|
| 8 |
def render():
|
| 9 |
add_navigation("txt_rashomon_effect", "txt_developer_decisions")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
|
| 11 |
st.markdown(
|
| 12 |
"""
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
import matplotlib.pyplot as plt
|
| 3 |
import numpy as np
|
| 4 |
+
from utils import add_navigation, add_instruction_text
|
| 5 |
|
| 6 |
plt.style.use('dark_background')
|
| 7 |
|
| 8 |
def render():
|
| 9 |
add_navigation("txt_rashomon_effect", "txt_developer_decisions")
|
| 10 |
+
|
| 11 |
+
add_instruction_text(
|
| 12 |
+
"""
|
| 13 |
+
Consider the following data about individuals who did (green) or didn't (red) repay their loans. <br>
|
| 14 |
+
Which model out of these three will you choose to give loan applications?
|
| 15 |
+
"""
|
| 16 |
+
)
|
| 17 |
|
| 18 |
st.markdown(
|
| 19 |
"""
|