Skip to content

nell_sports

from relational_datasets import load
train, test = load("nell_sports", "v0.0.6")
using RelationalDatasets
train, test = load("nell_sports", "v0.0.6")

Nell Sports contains relations based on the "Never Ending Language Learner" (NELL) data on players and teams.

Task

Multiclass Classification: What sport does the team play (football, soccer, baseball, hockey, basketball, softball, golf)?

athleteplaysforteam(+athlete,+team).
athleteplaysforteam(-athlete,+team).
athleteplaysforteam(+athlete,-team).
athleteplayssport(+athlete,+sport).
athleteplayssport(-athlete,+sport).
athleteplayssport(+athlete,-sport).
plays(+sport,+team).
plays(-sport,+team).
plays(+sport,-team).
teamplaysagainstteam(+team,+team).
teamplaysagainstteam(-team,+team).
teamplaysagainstteam(+team,-team).
teamplaysinleague(+team,-conference).
teamplaysinleague(-team,+conference).
teamplaysinleague(+team,+conference).
teamplayssport(+team,+sport).

Publications


Last update: November 9, 2022