Submission Format

Example Submission files

Sample submission files are available for Task 1 and Task 2

Submission Instructions - Task 1

The script takes one single prediction file as input, which MUST be a compressed .json file, named "results.json", structured as follows:

{

    "UUID": {

        "Prediction": "Predicted label"

    }}

Note: The name of the zip file can be in any format, but the name of the actual 'json' file must be in the format above.

Example Task 1 submission

{

    "5bc844fc-e852-4270-bfaf-36ea9eface3d": {

        "Prediction": "Contradiction"

    },

    "86b7cb3d-6186-4a04-9aa6-b174ab764eed": {

        "Prediction": "Contradiction"

    },

    "dbed5471-c2fc-45b5-b26f-430c9fa37a37": {

        "Prediction": "Entailment"

    },

    "20c35c89-8d23-4be3-b603-ac0ee0f3b4de": {

        "Prediction": "Contradiction"

    },

    "f17cb242-419d-4f5d-bfa4-41494ed5ac0e": {

        "Prediction": "Contradiction"

    }

}

Submission Instructions - Task 2

The script takes one single prediction file as input, which MUST be a compressed .json file, named "results.json", structured as follows:

{

    "UUID": {

        "Primary_evidence_index": [

Primary evidence index 1, 

        Primary evidence index 2,

.

.

.

        ],

        "Secondary_evidence_index": [

Secondary evidence index 1, 

        Secondary evidence index 2,

.

.

.

        ]

    },

}

Note: The name of the zip file can be in any format, but the name of the actual 'json' file must be in the format above.

Example Task 1 submission

{

    "5bc844fc-e852-4270-bfaf-36ea9eface3d": {

        "Primary_evidence_index": [

            0,

            1,

            2,

            3,

            4,

            5

        ],

        "Secondary_evidence_index": [

            0,

            1,

            2,

            3,

            4,

            5

        ]

    },

    "86b7cb3d-6186-4a04-9aa6-b174ab764eed": {

        "Primary_evidence_index": [

            18,

            22,

            23,

            24

        ]

    },

    "dbed5471-c2fc-45b5-b26f-430c9fa37a37": {

        "Primary_evidence_index": [

            0,

            3

        ],

        "Secondary_evidence_index": [

            0,

            7,

            8,

            9,

            10

        ]

    },

    "20c35c89-8d23-4be3-b603-ac0ee0f3b4de": {

        "Primary_evidence_index": [

            0,

            1,

            3,

            4,

            5

        ]

    },

    "f17cb242-419d-4f5d-bfa4-41494ed5ac0e": {

        "Primary_evidence_index": [

            0,

            1,

            2,

            3,

            4,

            5,

            6,

            7

        ],

        "Secondary_evidence_index": [

            0,

            1,

            2,

            3,

            4,

            5,

            6

        ]

    }

}