Spaces:
Sleeping
Sleeping
Commit
·
a9127b0
1
Parent(s):
84c2121
Add papers not yet indexed by Hugging Face to
Browse files
app.py
CHANGED
@@ -103,7 +103,11 @@ def get_papers(
|
|
103 |
for paper in already_claimed[False]:
|
104 |
url = f"https://huggingface.co/papers/{paper['id']}"
|
105 |
results += f"- [{paper['title']}]({url})\n"
|
106 |
-
|
|
|
|
|
|
|
|
|
107 |
|
108 |
|
109 |
with gr.Blocks() as demo:
|
|
|
103 |
for paper in already_claimed[False]:
|
104 |
url = f"https://huggingface.co/papers/{paper['id']}"
|
105 |
results += f"- [{paper['title']}]({url})\n"
|
106 |
+
for papers in papers_indexed_by_hf[False]:
|
107 |
+
results += f"# Papers not yet indexed by Hugging Face\n"
|
108 |
+
for paper in papers:
|
109 |
+
url = f"https://huggingface.co/papers/{paper['id']}"
|
110 |
+
results += f"- [{paper['title']}]({url})\n"
|
111 |
|
112 |
|
113 |
with gr.Blocks() as demo:
|