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 = """ """ st.markdown(f"
{ref_list}
", unsafe_allow_html=True) st.markdown("---")