--- language: - en multilinguality: - monolingual size_categories: - 1M "what are the liberal arts?" passage_dataset = load_dataset("sentence-transformers/msmarco-corpus", "passage", split="train") pid_to_passage = dict(zip(passage_dataset["pid"], passage_dataset["text"])) print(pid_to_passage[7349777]) # => "liberal arts. 1. the academic course of instruction at a college intended to provide general knowledge and comprising the arts, humanities, natural sciences, and social sciences, as opposed to professional or technical subjects." ```