CoolFace
Datasetpublic

hoshuhan/amr-3-parsed

Dataset Card for AMR 3.0 Parsed Dataset Summary This dataset contains parsed Abstract Meaning Representation (AMR) annotations from the LDC2020T02 release, formatted as instruction-following conversations. Each example consists of a sentence and its corresponding AMR graph representation. Supported Tasks and Leaderboards Tasks: Semantic parsing, specifically generating AMR graphs from English sentences Leaderboards: AMR Parsing… See the full description on the dataset page: https://huggingface.co/datasets/hoshuhan/amr-3-parsed.

sourceHugging Facecc-by-4.0updated 2y agoView on Hugging Face
0likes29downloads
Dataset Card

Dataset Card for AMR 3.0 Parsed

Dataset Description

Dataset Summary

This dataset contains parsed Abstract Meaning Representation (AMR) annotations from the LDC2020T02 release, formatted as instruction-following conversations. Each example consists of a sentence and its corresponding AMR graph representation.

Supported Tasks and Leaderboards

  • Tasks: Semantic parsing, specifically generating AMR graphs from English sentences
  • Leaderboards: AMR Parsing

Languages

The dataset is in English.

Dataset Structure

Data Instances

An example looks like:

python
{
    'conversations': [
        {
            'role': 'user',
            'content': 'Generate an Abstract Meaning Representation (AMR) graph for the following sentence: [sentence]'
        },
        {
            'role': 'assistant',
            'content': '[AMR graph]'
        }
    ]
}