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

How many models!?

Hugging Face hosts a vast number of models designed to complete different tasks. In this exercise, you'll use the Hugging Face Hub's API to find the total number of models supported for different tasks.

Bu egzersiz

Multi-Modal Models with Hugging Face

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

Egzersiz talimatları

  • Use the correct method of api to the list all of the models associated with the "text-to-image" task.

Uygulamalı interaktif egzersiz

Bu örnek kodu tamamlayarak bu egzersizi bitirin.

# Find the list of models for a task
models = api.____(task="____")
print(f"Task: text-to-image, Models: {len(list(models))}")
Kodu Düzenle ve Çalıştır