Datasets:
brittlewis12
commited on
Upload folder using huggingface_hub
Browse files- README.md +1 -14
- requirements.txt +9 -0
- upload.py +2 -1
README.md
CHANGED
@@ -1,16 +1,3 @@
|
|
1 |
-
---
|
2 |
-
license: cc-by-sa-3.0
|
3 |
-
task_categories:
|
4 |
-
- question-answering
|
5 |
-
tags:
|
6 |
-
- wikipedia
|
7 |
-
- usearch
|
8 |
-
- distilbert
|
9 |
-
- msmarco
|
10 |
-
- text
|
11 |
-
size_categories:
|
12 |
-
- 100K<n<1M
|
13 |
-
---
|
14 |
# wikiembed.py
|
15 |
text embeddings for wikipedia articles
|
16 |
|
@@ -77,4 +64,4 @@ released under [creative commons license (CC BY-SA 3.0 unported)](https://en.wik
|
|
77 |
|
78 |
data cleaning adapted from [olm/wikipedia](https://huggingface.co/datasets/olm/wikipedia)
|
79 |
|
80 |
-
by [britt lewis](https://bl3.dev)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
# wikiembed.py
|
2 |
text embeddings for wikipedia articles
|
3 |
|
|
|
64 |
|
65 |
data cleaning adapted from [olm/wikipedia](https://huggingface.co/datasets/olm/wikipedia)
|
66 |
|
67 |
+
by [britt lewis](https://bl3.dev)
|
requirements.txt
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
mwparserfromhell==0.6.6
|
2 |
+
requests>=2.32.0
|
3 |
+
multiprocess==0.70.13
|
4 |
+
usearch>=2.12.0
|
5 |
+
coremltools>=7.1
|
6 |
+
transformers>=4.43.0
|
7 |
+
numpy<2
|
8 |
+
matplotlib>=3.9.1
|
9 |
+
huggingface-hub>=0.24.5
|
upload.py
CHANGED
@@ -17,7 +17,8 @@ def upload():
|
|
17 |
folder_path="./",
|
18 |
repo_type="dataset",
|
19 |
repo_id=repo_id,
|
20 |
-
allow_patterns=["README.md", "*.py", "*.bz2", "*.br"],
|
|
|
21 |
)
|
22 |
|
23 |
upload()
|
|
|
17 |
folder_path="./",
|
18 |
repo_type="dataset",
|
19 |
repo_id=repo_id,
|
20 |
+
allow_patterns=["README.md", "*.py", "*.bz2", "*.br", "requirements.txt"],
|
21 |
+
ignore_patterns=["scratch/"]
|
22 |
)
|
23 |
|
24 |
upload()
|