Update app.py
Browse files
app.py
CHANGED
|
@@ -25,7 +25,6 @@ def get_user_models(hf_username, task):
|
|
| 25 |
List the user's models for a given task
|
| 26 |
:param hf_username: User HF username
|
| 27 |
"""
|
| 28 |
-
print("\nAAAAA:\n", api.list_models(author=hf_username))
|
| 29 |
models = api.list_models(author=hf_username, filter=[task])
|
| 30 |
user_model_ids = [x.modelId for x in models]
|
| 31 |
|
|
|
|
| 25 |
List the user's models for a given task
|
| 26 |
:param hf_username: User HF username
|
| 27 |
"""
|
|
|
|
| 28 |
models = api.list_models(author=hf_username, filter=[task])
|
| 29 |
user_model_ids = [x.modelId for x in models]
|
| 30 |
|