t_rex / README.md
asahi417's picture
init
79543d6
|
raw
history blame
4.89 kB
metadata
language:
  - en
license:
  - other
multilinguality:
  - monolingual
pretty_name: t_rex

Dataset Card for "relbert/t_rex"

Dataset Description

Dataset Summary

This is the T-REX dataset proposed in https://aclanthology.org/L18-1544/. We split the raw T-REX dataset into train/validation/test split by the ratio of 70/15/15.

Filtering to Remove Noise

We apply filtering to keep triples with alpha-numeric subject and object, as well as triples with at least either of subject or object is a named-entity.

  • Number of unique entities in subject and object.
Dataset train validation test all
raw 659,163 141,248 141,249 941,660
filter 463,521 99,550 99,408 662,479
  • Number of unique predicate.
Dataset train validation test all
raw 894 717 700 2,311
filter 780 614 616 2,010

Filtering to Purify the Dataset

We reduce the size of the dataset by applying filtering based on the number of predicates and entities in the triples. We first remove triples that contain either of subject or object with the occurrence in the dataset that is lower than min entity. Then, we reduce the number triples in each predicate to be less than max predicate. If the number of triples in a predicate is higher than max predicate, we choose top-max predicate triples in terms of the frequency of the subject and the object.

  • number of triples in each configuration
min entity/max predicate 10 25 50 100
1 6,052 12,295 20,602 33,206
2 5,489 11,153 18,595 29,618
3 4,986 10,093 16,599 26,151
4 4,640 9,384 15,335 24,075
  • number of predicates in each configuration
min entity / max predicate 10 25 50 100
1 818 818 818 818
2 726 726 726 726
3 665 665 665 665
4 614 614 614 614
  • distribution of entities
  • distribution of predicates

Dataset Structure

Data Instances

An example looks as follows.

{
  "predicate": "released",
  "object": "December 18, 1954",
  "subject": "It",
  "title": "Touché, Pussy Cat!",
  "text": "Touché, Pussy Cat! is a 1954 one-reel animated Tom and Jerry short, directed by William Hanna and Joseph Barbera, with production by Fred Quimby and music by Scott Bradley. It was nominated for an Academy Award in 1954, the series' final Oscar nomination, while Johann Mouse won the last award for the series a year before. Touché, Pussy Cat! is a follow-up to the 1952 cartoon The Two Mouseketeers, which won the 1951 Academy Award. The title is also Tuffy's catchphrase in the \"Mouseketeer\" shorts. The cartoon was animated by Kenneth Muse, Ed Barge and Irven Spence, with backgrounds by Robert Gentle. It was released in theaters by Metro-Goldwyn-Mayer on December 18, 1954. It was the first of the Tom and Jerry shorts to be produced in the widescreen CinemaScope format, but was the second CinemaScope-produced short to be released (after Pet Peeve, released the previous month; Touché, Pussy Cat! has an earlier MPAA certificate number). The cartoon also exists in a non-Cinemascope format. Touché, Pussy Cat! spawned two further entries in the \"Mouseketeer\" series of Tom and Jerry cartoons, namely Tom and Chérie in 1955, and Royal Cat Nap in 1958."
}

Citation Information

@inproceedings{elsahar2018t,
  title={T-rex: A large scale alignment of natural language with knowledge base triples},
  author={Elsahar, Hady and Vougiouklis, Pavlos and Remaci, Arslen and Gravier, Christophe and Hare, Jonathon and Laforest, Frederique and Simperl, Elena},
  booktitle={Proceedings of the Eleventh International Conference on Language Resources and Evaluation (LREC 2018)},
  year={2018}
}