python/closed_book_processing.py [73:84]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    )
    parser.add_argument("--data_path", help="Path to the json dataset")
    parser.add_argument("--output_path", help="Path to the output file")
    parser.add_argument(
        "--only_english",
        action="store_true",
        help="Only keep english samples in the dataset",
    )
    parser.add_argument(
        "--keep_markup", action="store_true", help="Keep the HTML markup"
    )
    args = parser.parse_args()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



python/passage_retrieval_processing.py [263:274]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    )
    parser.add_argument("--data_path", help="Path to the json dataset")
    parser.add_argument("--output_path", help="Path to the output file")
    parser.add_argument(
        "--only_english",
        action="store_true",
        help="Only keep english samples in the dataset",
    )
    parser.add_argument(
        "--keep_markup", action="store_true", help="Keep the HTML markup"
    )
    args = parser.parse_args()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



