Pilot Task (LJPJT25)

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 (TT).

A tort-case instance (TT) contains undisputed_facts (UU), plaintiff_claims (PP), defendant_claims (DD) and court_decision (TT).

undisputed_facts (UU), plaintiff_claims (PP) and defendant_claims (DD) can contain multiple items in them. Items of plaintiff_claims (PP) and defendant_claims (DD) have is_accepted representing gold labels of Rationale Extraction task.

court_decision (TT) 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