phi_inference / list_models.py
Leon4gr45's picture
Upload folder using huggingface_hub
36fcbf8 verified
raw
history blame contribute delete
139 Bytes
from huggingface_hub import HfApi
api = HfApi()
models = api.list_models(author="OpenGVLab")
for model in models:
print(model.modelId)