follie / README.md
maximoss's picture
Update README.md
af1b908 verified
|
Raw
History Blame Contribute Delete
10.1 kB
metadata
license: cc-by-nc-sa-4.0
language:
  - fr
size_categories:
  - 10K<n<100K
task_categories:
  - text-classification
  - text-generation
task_ids:
  - parsing
  - natural-language-inference
  - language-modeling
configs:
  - config_name: default
dataset_info:
  features:
    - name: problem_id
      dtype: int64
    - name: p1
      dtype: string
    - name: p2
      dtype: string
    - name: p3
      dtype: string
    - name: p4
      dtype: string
    - name: p5
      dtype: string
    - name: p1_nl
      dtype: string
    - name: p2_nl
      dtype: string
    - name: p3_nl
      dtype: string
    - name: p4_nl
      dtype: string
    - name: p5_nl
      dtype: string
    - name: h1
      dtype: string
    - name: h2
      dtype: string
    - name: h3
      dtype: string
    - name: h4
      dtype: string
    - name: h1_nl
      dtype: string
    - name: h2_nl
      dtype: string
    - name: h3_nl
      dtype: string
    - name: h4_nl
      dtype: string
    - name: label
      dtype:
        class_label:
          names:
            '0': 'yes'
            '1': unknown
            '2': 'no'
            '3': undef
    - name: dataset
      dtype: string
    - name: subset
      dtype: string

Dataset Card for FOLLIE dataset

Dataset Details

Dataset Description

FOLLIE (First-Order Logic for Language Inference and Entailment) is the first dataset for French with natural language sentences and their corresponding first-order logic (FOL) formulas.

The sentences in the dataset were drawn from all the existing French Natural Language Inference (NLI) datasets, namely DACCORD, FraCaS-FR, GQNLI-FR, RTE3-FR (dev and test), SICK-FR, and XNLI (dev and test). These datasets are structured as sentence pairs (premise(s) and hypothesis) annotated with a gold label (entailment, neutral, or contradiction). The resulting FOLLIE dataset preserves all these elements for the converted sentences, in addition to providing logical representations of the sentences. It can therefore be used either for natural language–to–FOL translation tasks or for NLI/RTE tasks using neurosymbolic AI approaches (i.e., solving NLI by reasoning over FOL formulas).

The logical formulas follow the format used in the NLTK package, thus they are fully compatible with the NLTK Logic Parser.

  • Curated by: [More Information Needed]
  • Funded by [optional]: [More Information Needed]
  • Shared by [optional]: [More Information Needed]
  • Language(s) (NLP): [More Information Needed]
  • License: [More Information Needed]

Dataset Sources [optional]

  • Repository: [More Information Needed]
  • Paper [optional]: [More Information Needed]
  • Demo [optional]: [More Information Needed]

Uses

Direct Use

The dataset can be used for the task of translating French sentences into their corresponding logical representation in first-order logic, or for the task of natural language inference (NLI) with (neuro)symbolic AI methods. The NL-to-FOL task is a sequence-to-sequence task, whereas the NLI task is a sentence-pair classification task.

If used for NLI, you should only keep the rows where the FOL formulas for both all the premise(s) and the hypothesi(e)s are available, and filter out the rows where one of the two is not available in the dataset.

Out-of-Scope Use

[More Information Needed]

Dataset Structure

Data Fields

  • problem_id: An identifier for each sentence1--sentence2 pair.
  • p1 - p5: The FOL formulas corresponding to the premise (or premises, if many) of the original French source datasets.
  • p1_nl - p5_nl: The premise (or premises, if many) in natural language (French) from the original French source datasets.
  • h1 - h3: The FOL formulas corresponding to the hypothesis (or hypotheses, if many) of the original French source datasets.
  • h1_nl - h3_nl: The hypothesis (or hypotheses, if many) in natural language (French) from the original French source datasets.
  • label: The classification label, with possible values 0 - yes (for entailment), 1 - no (for contradiction), 2 - unknown (for neutral), or 3 - undef (only for some FraCaS examples, when it is not clear).
  • dataset: The source dataset (DACCORD, FraCaS, GQNLI, RTE3, SICK, XNLI).
  • subset: The subset (TEST, TRAIL, TRAIN) in which each example is in its original source dataset.

Dataset Creation

Curation Rationale

[More Information Needed]

Source Data

Data Collection and Processing

[More Information Needed]

Who are the source data producers?

[More Information Needed]

Annotations [optional]

Annotation process

[More Information Needed]

Who are the annotators?

[More Information Needed]

Personal and Sensitive Information

[More Information Needed]

Bias, Risks, and Limitations

[More Information Needed]

Recommendations

Users should be made aware of the risks, biases and limitations of the dataset. More information needed for further recommendations.

Citation

TBA soon, but for the moment you can cite this paper:

BibTeX:

@inproceedings{skandalis-etal-2025-neurosymbolic,
    title = "Neurosymbolic {AI} for Natural Language Inference in {F}rench : combining {LLM}s and theorem provers for semantic parsing and natural language reasoning",
    author = "Skandalis, Maximos  and
      Abzianidze, Lasha  and
      Moot, Richard  and
      Retor{\'e}, Christian  and
      Robillard, Simon",
    editor = "Evang, Kilian  and
      Kallmeyer, Laura  and
      Pogodalla, Sylvain",
    booktitle = "Proceedings of the 16th International Conference on Computational Semantics",
    month = sep,
    year = "2025",
    address = {D{\"u}sseldorf, Germany},
    publisher = "Association for Computational Linguistics",
    url = "https://aclanthology.org/2025.iwcs-main.21/",
    pages = "242--253",
    ISBN = "979-8-89176-316-6",
    abstract = "In this article, we describe the first comprehensive neurosymbolic pipeline for the task of Natural Language Inference (NLI) for French, with the synergy of Large Language Models (CamemBERT) and automated theorem provers (GrailLight, LangPro). LLMs prepare the input for GrailLight by tagging each token with Part-of-Speech and grammatical information based on the Type-Logical Grammar formalism. GrailLight then produces the lambda-terms given as input to the LangPro theorem prover, a tableau-based theorem prover for natural logic originally developped for English. Currently, the proposed system works on the French version of SICK dataset. The results obtained are comparable to the ones on the English and Dutch versions of SICK with the same LangPro theorem prover, and are better than the results of recent transformers on this specific dataset.Finally, we have identified ways to further improve the results obtained, such as giving access to the theorem prover to lexical knowledge via a knowledge base for French."
}

ACL:

Maximos Skandalis, Lasha Abzianidze, Richard Moot, Christian Retoré, and Simon Robillard. 2025. Neurosymbolic AI for Natural Language Inference in French : combining LLMs and theorem provers for semantic parsing and natural language reasoning. In Proceedings of the 16th International Conference on Computational Semantics, pages 242–253, Düsseldorf, Germany. Association for Computational Linguistics.

Acknowledgements

This work was supported by the Defence Innovation Agency (AID) of the Directorate General of Armament (DGA) of the French Ministry of Armed Forces, and by the ICO, Institut Cybersécurité Occitanie, funded by Région Occitanie, France.

Dataset Card Authors [optional]

[More Information Needed]

Dataset Card Contact

[More Information Needed]