import streamlit as st
from utils import add_navigation, add_instruction_text
def render():
add_navigation("conclusion", None)
add_instruction_text(
"""
'Rashomon Effect' was first introduced in AI by Breiman (2001). More recently, 'Predictive Multiplicity' was formally defined by Marx et al. (2020)
The language on 'multiverse' is borrowed from Simson et al. (2024)
The intention-convention-arbitrariness (ICA) framework was proposed by Ganesh et al. (2025)
"""
)
add_instruction_text(
"""
We recently did a tutorial on multiplicity at FAccT 2025. You can find the recorded video, slides, and other material here.
Want to dig even deeper? We also wrote a systematic survey on multiplicity.
"""
)
ref_list = """
- Breiman, Leo. "Statistical modeling: The two cultures (with comments and a rejoinder by the author)." Statistical science 16, no. 3 (2001): 199-231.
- Marx, Charles, Flavio Calmon, and Berk Ustun. "Predictive multiplicity in classification." In International conference on machine learning, pp. 6765-6774. PMLR, 2020.
- Simson, Jan, Florian Pfisterer, and Christoph Kern. "One model many scores: Using multiverse analysis to prevent fairness hacking and evaluate the influence of model design decisions." In Proceedings of the 2024 ACM Conference on Fairness, Accountability, and Transparency, pp. 1305-1320. 2024.
- Ganesh, Prakhar, Afaf Taik, and Golnoosh Farnadi. "Systemizing Multiplicity: The Curious Case of Arbitrariness in Machine Learning." In Proceedings of the AAAI/ACM Conference on AI, Ethics, and Society. 2025.
- Multiplicity Tutorial Website - https://prakharg24.github.io/multiplicity-tutorial/
- Multiplicity Systematic Survey - Ganesh et al. (2025) above
"""
st.markdown(f"{ref_list}
", unsafe_allow_html=True)
st.markdown("---")