Spaces:
Running
on
Zero
Running
on
Zero
Commit
·
3fa4157
1
Parent(s):
34b1289
Bump SDK version, update descriptions
Browse files
README.md
CHANGED
@@ -5,11 +5,11 @@ colorFrom: blue
|
|
5 |
colorTo: gray
|
6 |
sdk: gradio
|
7 |
python_version: 3.12
|
8 |
-
sdk_version: 5.
|
9 |
app_file: app.py
|
10 |
pinned: false
|
11 |
license: cc0-1.0
|
12 |
-
short_description: "
|
13 |
---
|
14 |
|
15 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
5 |
colorTo: gray
|
6 |
sdk: gradio
|
7 |
python_version: 3.12
|
8 |
+
sdk_version: 5.20.0
|
9 |
app_file: app.py
|
10 |
pinned: false
|
11 |
license: cc0-1.0
|
12 |
+
short_description: "Semantic search through 110M academic publications"
|
13 |
---
|
14 |
|
15 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
app.py
CHANGED
@@ -307,11 +307,12 @@ def main():
|
|
307 |
gr.Markdown("# abstracts-index")
|
308 |
gr.Markdown(
|
309 |
f"Explore {quantity} academic publications selected from the "
|
310 |
-
"[OpenAlex](https://openalex.org) dataset (as of January 1st, 2025)
|
311 |
-
"project is an index of the
|
312 |
-
"abstracts. The embeddings were
|
313 |
-
f"[{model_human_name}]({model_link}) model, and the
|
314 |
-
"
|
|
|
315 |
"scripts and more information available at the main repo "
|
316 |
"[abstracts-search](https://github.com/colonelwatch/abstracts-search) on "
|
317 |
"Github."
|
|
|
307 |
gr.Markdown("# abstracts-index")
|
308 |
gr.Markdown(
|
309 |
f"Explore {quantity} academic publications selected from the "
|
310 |
+
"[OpenAlex](https://openalex.org) dataset (as of January 1st, 2025) with "
|
311 |
+
"semantic search, not keyword search. This project is an index of the "
|
312 |
+
"embeddings generated from their titles and abstracts. The embeddings were "
|
313 |
+
f"generated using the [{model_human_name}]({model_link}) model, and the "
|
314 |
+
"index was built using the "
|
315 |
+
"[faiss](https://github.com/facebookresearch/faiss) module. The build "
|
316 |
"scripts and more information available at the main repo "
|
317 |
"[abstracts-search](https://github.com/colonelwatch/abstracts-search) on "
|
318 |
"Github."
|