Spaces:
Sleeping
Sleeping
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +8 -10
src/streamlit_app.py
CHANGED
|
@@ -7,7 +7,7 @@ import streamlit as st
|
|
| 7 |
from datasets import load_dataset
|
| 8 |
|
| 9 |
st.set_page_config(
|
| 10 |
-
page_title="Misinformation Resilience
|
| 11 |
page_icon="🧭",
|
| 12 |
layout="wide",
|
| 13 |
initial_sidebar_state="expanded",
|
|
@@ -546,18 +546,17 @@ def preset_recent() -> None:
|
|
| 546 |
data = load_data()
|
| 547 |
item_data = load_item_data()
|
| 548 |
|
| 549 |
-
st.title("Misinformation Resilience
|
| 550 |
-
st.
|
|
|
|
| 551 |
|
| 552 |
with st.sidebar:
|
| 553 |
st.header("MisinfoResilienceMetrics")
|
| 554 |
-
st.
|
| 555 |
-
st.
|
| 556 |
-
st.markdown("[
|
| 557 |
-
st.markdown("[Compare measures](#compare-measures)")
|
| 558 |
-
st.markdown("[Select MRM items](#select-mrm-items)")
|
| 559 |
|
| 560 |
-
explore_tab, compare_tab, item_tab = st.tabs(["Explore measures", "Compare measures", "Select MRM items"])
|
| 561 |
|
| 562 |
with explore_tab:
|
| 563 |
st.subheader("Explore measures")
|
|
@@ -591,4 +590,3 @@ with compare_tab:
|
|
| 591 |
|
| 592 |
with item_tab:
|
| 593 |
render_item_selection_tool(item_data)
|
| 594 |
-
|
|
|
|
| 7 |
from datasets import load_dataset
|
| 8 |
|
| 9 |
st.set_page_config(
|
| 10 |
+
page_title="Misinformation Resilience Metrics",
|
| 11 |
page_icon="🧭",
|
| 12 |
layout="wide",
|
| 13 |
initial_sidebar_state="expanded",
|
|
|
|
| 546 |
data = load_data()
|
| 547 |
item_data = load_item_data()
|
| 548 |
|
| 549 |
+
st.title("Misinformation Resilience Metrics")
|
| 550 |
+
st.markdown("Select measures, build item sets, compare tools, and explore the MRM database.")
|
| 551 |
+
st.caption("Maertens, R., Götz, F., Xu, R., Roozenbeek, J., Kyrychenko, Y., Rode, J., Golino, H., Remshard, M., Lewandowski, J. and Goldberg, B. (2026). The Cognitive-Affective-Behavioural Structure of Misinformation Resilience. OSF. https://doi.org/10.31234/osf.io/r8nhc_v2")
|
| 552 |
|
| 553 |
with st.sidebar:
|
| 554 |
st.header("MisinfoResilienceMetrics")
|
| 555 |
+
st.markdown("🔍 [**Explore measures**](#explore-measures)")
|
| 556 |
+
st.markdown("⚖️ [**Compare measures**](#compare-measures)")
|
| 557 |
+
st.markdown("🎯 [**Select MRM items**](#select-mrm-items)")
|
|
|
|
|
|
|
| 558 |
|
| 559 |
+
explore_tab, compare_tab, item_tab = st.tabs(["🔍 Explore measures", "⚖️ Compare measures", "🎯 Select MRM items"])
|
| 560 |
|
| 561 |
with explore_tab:
|
| 562 |
st.subheader("Explore measures")
|
|
|
|
| 590 |
|
| 591 |
with item_tab:
|
| 592 |
render_item_selection_tool(item_data)
|
|
|