'use client' import Link from "next/link"; import { Trans } from 'react-i18next'; import { useTranslation } from 'react-i18next'; export default function Home() { const { t } = useTranslation(); return (

{t('home_whatIsColleTitle')}

Colle is a multidisciplinary French Natural Language Understanding benchmark ( NLU ). It takes inspiration from its predecessors  GLUE  and  SuperGLUE  to build a benchmark capable of evaluating models in the French language on multiple topics of language understanding. See  our paper  for more information.

{t('home_paragraph2')}

We have made the choice to hide test labels to discourage cheating or overfitting on test data. To get results on your test data, you may send us your results as explained in  our guide .

); }