Spaces:
Build error
Build error
Commit ·
7709561
1
Parent(s): 87196f0
Fix links in report_summary function
Browse files
app.py
CHANGED
|
@@ -70,8 +70,8 @@ def report_summary():
|
|
| 70 |
summary += f"# Summary for language: {language}\n"
|
| 71 |
summary += f"This language has {(row[2])} token classification datasets, it has {row[3]} token classification models, and {row[4]} models overall.\n"
|
| 72 |
summary += f"- [Datasets for token classification task for {language}](https://huggingface.co/datasets?task_categories=task_categories:token-classification&language=language:{language})\n"
|
| 73 |
-
summary += f"- Token classification models for
|
| 74 |
-
summary += f"- All models for
|
| 75 |
summary += "<br>\n"
|
| 76 |
return summary
|
| 77 |
|
|
|
|
| 70 |
summary += f"# Summary for language: {language}\n"
|
| 71 |
summary += f"This language has {(row[2])} token classification datasets, it has {row[3]} token classification models, and {row[4]} models overall.\n"
|
| 72 |
summary += f"- [Datasets for token classification task for {language}](https://huggingface.co/datasets?task_categories=task_categories:token-classification&language=language:{language})\n"
|
| 73 |
+
summary += f"- [Token classification models for {language}](https://huggingface.co/models?task_categories=task_categories:token-classification&language=language:{language})\n"
|
| 74 |
+
summary += f"- [All models for {language}](https://huggingface.co/models?language={language}&sort=trending)\n"
|
| 75 |
summary += "<br>\n"
|
| 76 |
return summary
|
| 77 |
|