|
import streamlit as st |
|
st.set_page_config(layout="wide") |
|
from streamlit_extras.switch_page_button import switch_page |
|
|
|
st.markdown("""## Évaluation humaine""") |
|
st.markdown(""" """) |
|
|
|
st.markdown(""" |
|
Dans ce chapitre, nous définissons le concept d'évaluation humaine en donnant notamment des indications sur la manière de recourir à des annotateurs humains. Nous terminons par des conseils et astuces utiles à connaître sur ce sujet.""") |
|
|
|
|
|
st.markdown(""" """) |
|
st.markdown(""" """) |
|
st.markdown(""" """) |
|
col1, col2, col3= st.columns(3) |
|
with col1: |
|
if st.button('Section précédente', use_container_width=True): |
|
switch_page("II.4._Conseils et astuces") |
|
with col2: |
|
if st.button("Accueil", use_container_width=True): |
|
switch_page("Home") |
|
with col3: |
|
if st.button("Section suivante", use_container_width=True): |
|
switch_page("III.1._Bases") |