kilt/datasets/hotpotqa.py [137:148]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                        {
                            "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 [100:111]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                {
                                    "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
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



