Pilot Task (LJPJT25)
The pilot task data will be provided in jsonl format.
A json object in a jsonl file contains one instance of tort-case ().
A tort-case instance () contains undisputed_facts
(), plaintiff_claims
(), defendant_claims
() and court_decision
().
undisputed_facts
(), plaintiff_claims
() and defendant_claims
() can contain multiple items in them.
Items of plaintiff_claims
() and defendant_claims
() have is_accepted
representing gold labels of Rationale Extraction task.
court_decision
() contains a gold label of Tort Predicstion task.
You can see examples below.
{
"version": "train_001.jsonl",
"tort_id": "6250",
"undisputed_facts": [
{
"id": "0",
"description": "Here, you will find text for the undispupted facts, if exists.",
},...
],
"plaintiff_claims": [
{
"id": "0",
"description": "Here, you will find claims submitted from plaintiffs",
"is_accepted": true
},...
],
"defendant_claims": [
{
"id": "0",
"description": "Here, you will find claims submitted from defendants",
"is_accepted": false
},...
],
"court_decision": false
}
Last updated on