Spaces:
Runtime error
Runtime error
File size: 139 Bytes
36fcbf8 |
1 2 3 4 5 6 |
from huggingface_hub import HfApi
api = HfApi()
models = api.list_models(author="OpenGVLab")
for model in models:
print(model.modelId)
|