Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 3,162 Bytes
b4e647f 4d20471 811b366 4d20471 b4e647f 4d20471 811b366 bc5e80a 811b366 7f3a938 811b366 4d20471 8b23f6c 4d20471 8b23f6c 4d20471 8b23f6c 4d20471 8b23f6c 4d20471 8b23f6c 4d20471 7f3a938 4d20471 b4e647f |
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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
import {addFooterTranslations, Footer} from "@codegouvfr/react-dsfr/Footer";
// import { Box, Typography, Link } from "@mui/material";
const footer = () => {
return <Footer
style={{"boxShadow": "none"}}
accessibility="fully compliant"
contentDescription="
L'évaluation des systèmes d'IA est un enjeu stratégique sur lequel la France s'est historiquement démarquée.
Ce classement, ou leaderboard, s'inspire directement de l'Open LLM Leaderboard et permet de comparer différents modèles d'IA génératifs à l'aide de jeux de données spécifiquement adaptés aux environnements et à la culture francophones.
"
classes={{
logo: "logo_footer",
contentLink: "content_link"
}}
license={""}
linkList={undefined}
partnersLogos={{
sub: [
{
alt: 'Logo Inria',
imgUrl: '/inr_logo_rouge.png',
linkProps: {
href: "https://inria.fr/fr",
title: "Lien vers le site Inria"
}
},
{
alt: 'Logo CNRS',
imgUrl: '/LOGO_CNRS_BLEU.png',
linkProps: {
href: "https://www.cnrs.fr/fr",
title: "Lien vers le site CNRS"
}
},
{
alt: 'Logo LNE',
imgUrl: '/logo-lne.svgz',
linkProps: {
href: "https://www.lne.fr/fr",
title: "Lien vers le site LNE"
}
},
{
alt: 'Logo DGE',
imgUrl: '/logo_DGE.png',
linkProps: {
href: "https://www.entreprises.gouv.fr/",
title: "Lien vers le site DGE"
}
},
{
alt: 'Logo huggingface',
imgUrl: '/hf-logo-with-title.svg',
linkProps: {
href: "https://huggingface.co/",
title: "Lien vers le site huggingface"
}
}
]
}}
websiteMapLinkProps={undefined}
/>
}
addFooterTranslations({
lang: "en",
messages: {
accessibility: "Accessibility",
"fully compliant": "Partially compliant",
}
});
addFooterTranslations({
lang: "fr",
messages: {
accessibility: "Accesibilité",
"fully compliant": "Partielle",
}
});
// const Footer = () => {
// return (
// <Box
// component="footer"
// sx={{
// width: "100%",
// py: 4,
// textAlign: "center",
// }}
// >
// <Typography variant="body2" color="text.secondary" sx={{ mx: 4 }}>
// © 2024 Hugging Face - Open LLM Leaderboard - Made with 🤗 by the HF team
// -{" "}
// <Link
// href="https://huggingface.co"
// target="_blank"
// rel="noopener noreferrer"
// color="inherit"
// >
// huggingface.co
// </Link>
// </Typography>
// </Box>
// );
// };
export default footer;
|