kilt/datasets/natural_questions.py [167:181]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                "answer": answer_span,
                                "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
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



kilt/datasets/triviaqa.py [97:111]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                            "answer": answer_span,
                            "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
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



