Is there any way to get list of models available on Hugging Face? E.g. for Automatic Speech Recognition (ASR).
How to get all hugging face models list using python?
1.3k Views Asked by Neerav Mathur Jazzy At
2
There are 2 best solutions below
0

You can use huggingface_hub with list_models and a ModelFilter:
from huggingface_hub import HfApi, ModelFilter
api = HfApi()
models = api.list_models(
filter=ModelFilter(
task="automatic-speech-recognition"
)
)
models = list(models)
print(len(models))
print(models[0].modelId)
Output:
7195
13048909972/wav2vec2-common_voice-tr-demo
Try something like:
[out]:
Also posted a feature request on https://discuss.huggingface.co/t/feature-request-listing-available-models-datasets-and-metrics/34389