BaşlayınÜcretsiz Başlayın

Loading datasets

After you've chosen your dataset, it's time to load it with the datasets library!

In this case, you'll load the "validation" split of the "TIGER-Lab/MMLU-Pro" dataset, which is a benchmark evaluation dataset.

The load_dataset module from the datasets package is already loaded for you.

Bu egzersiz

Working with Hugging Face

kursunun bir parçasıdır
Kursu Görüntüle

Egzersiz talimatları

  • Use the correct function to load the "TIGER-Lab/MMLU-Pro" dataset and specify the "validation" split.

Uygulamalı interaktif egzersiz

Bu örnek kodu tamamlayarak bu egzersizi bitirin.

# Load the "validation" split of the TIGER-Lab/MMLU-Pro dataset
my_dataset = ____("____", split="____")

# Display dataset details
print(my_dataset)
Kodu Düzenle ve Çalıştır