Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 2,344 Bytes
b4e647f 4d20471 b4e647f 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 |
import {addFooterTranslations, Footer} from "@codegouvfr/react-dsfr/Footer";
// import { Box, Typography, Link } from "@mui/material";
const footer = () => {
return <Footer
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.
"
partnersLogos={{
sub: [
{
alt: 'Logo Inria',
href: '#',
imgUrl: '/inr_logo_rouge.png'
},
{
alt: 'Logo CNRS',
href: '#',
imgUrl: '/LOGO_CNRS_BLEU.png'
},
{
alt: 'Logo LNE',
href: '#',
imgUrl: '/logo-lne.svgz'
},
{
alt: 'Logo DGE',
href: '#',
imgUrl: '/logo_DGE.png'
},
{
alt: 'Logo huggingface',
href: '#',
imgUrl: '/hf-logo-with-title.svg'
}
]
}}
/>
}
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;
|