Spaces:
Runtime error
Runtime error
Madhavan Iyengar
commited on
Commit
•
465d7de
1
Parent(s):
1620bef
remove incorrect hyperlinks
Browse files- README.md +1 -1
- src/display/formatting.py +2 -1
README.md
CHANGED
@@ -5,7 +5,7 @@ colorFrom: green
|
|
5 |
colorTo: indigo
|
6 |
sdk: gradio
|
7 |
app_file: app.py
|
8 |
-
pinned:
|
9 |
license: apache-2.0
|
10 |
---
|
11 |
|
|
|
5 |
colorTo: indigo
|
6 |
sdk: gradio
|
7 |
app_file: app.py
|
8 |
+
pinned: false
|
9 |
license: apache-2.0
|
10 |
---
|
11 |
|
src/display/formatting.py
CHANGED
@@ -4,7 +4,8 @@ def model_hyperlink(link, model_name):
|
|
4 |
|
5 |
def make_clickable_model(model_name):
|
6 |
link = f"https://huggingface.co/{model_name}"
|
7 |
-
return model_hyperlink(link, model_name)
|
|
|
8 |
|
9 |
|
10 |
def styled_error(error):
|
|
|
4 |
|
5 |
def make_clickable_model(model_name):
|
6 |
link = f"https://huggingface.co/{model_name}"
|
7 |
+
# return model_hyperlink(link, model_name)
|
8 |
+
return model_name
|
9 |
|
10 |
|
11 |
def styled_error(error):
|