kilt/datasets/fact_verification.py [191:205]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                        "provenance": [
                            # list of relevant WikipediaPages / Spans as provenance for the answer from the ks
                            {
                                "wikipedia_id": page[
                                    "wikipedia_id"
                                ],  # *mandatory* - ID Wikipedia Page
                                "title": page[
                                    "wikipedia_title"
                                ],  # *mandatory* - Title Wikipedia Page
                                "start_paragraph_id": paragraph_id,  # start paragraph id with relevant info
                                "start_character": start_character,
                                "end_paragraph_id": paragraph_id,  # end paragraph id
                                "end_character": end_character,
                                "bleu_score": bleu,  # 1.0 when gold data is exactly matched, lower for fuzzy matches
                                "meta": {  # dataset/task specific
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



kilt/datasets/natural_questions.py [111:125]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                    "provenance": [
                                        # list of relevant WikipediaPages / Spans as provenance for the answer from the ks
                                        {
                                            "wikipedia_id": page[
                                                "wikipedia_id"
                                            ],  # *mandatory* - ID Wikipedia Page
                                            "title": page[
                                                "wikipedia_title"
                                            ],  # *mandatory* - Title Wikipedia Page
                                            "start_paragraph_id": paragraph_id,  # start paragraph id with relevant info
                                            "start_character": start_character,
                                            "end_paragraph_id": paragraph_id,  # end paragraph id
                                            "end_character": end_character,
                                            "bleu_score": bleu,  # 1.0 when gold data is exactly matched, lower for fuzzy matches
                                            "meta": {  # dataset/task specific
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



