Spaces:
Running
Running
File size: 1,100 Bytes
1162aae aae7b0f 1162aae |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
import streamlit as st
st.set_page_config(layout="wide")
from streamlit_extras.switch_page_button import switch_page
st.markdown(
"""
## Notebook 📓
Ce *notebook* vous explique comment définir des variations d'instructions pour une tâche donnée, exécuter les évaluations et analyser les résultats.
Hugging Face ne permettant pas d'afficher un *notebook* dans un Space (bien qu'hébergé lui-même sur son Hub), nous vous renvoyons à l'adresse suivante pour pouvoir le consulter/télécharger : https://huggingface.co/spaces/CATIE-AQ/Guide_Evaluation_LLM/blob/main/comparing_task_formulations.ipynb
""", unsafe_allow_html=True)
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("V.3._Dépanner les problèmes mathématiques")
with col2:
if st.button("Accueil", use_container_width=True):
switch_page("Home")
with col3:
if st.button("Ressources", use_container_width=True):
switch_page("Ressources") |