Add dataset card for HF Dataset Viewer (entries.parquet)
Browse files
README.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
viewer: true
|
| 3 |
+
license: apache-2.0
|
| 4 |
+
configs:
|
| 5 |
+
- config_name: default
|
| 6 |
+
data_files:
|
| 7 |
+
- split: train
|
| 8 |
+
path: entries.parquet
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# parsimony-dev/rba
|
| 12 |
+
|
| 13 |
+
Parsimony catalog snapshot published for in-process search (FAISS/BM25 indexes).
|
| 14 |
+
|
| 15 |
+
The Hugging Face Dataset Viewer shows indexed **entries** from ``entries.parquet`` only.
|
| 16 |
+
Search index artifacts (``indexes/``, ``embeddings.faiss``, etc.) are ignored by the viewer.
|
| 17 |
+
|
| 18 |
+
**Configs:** ``default``
|
| 19 |
+
|
| 20 |
+
Load programmatically:
|
| 21 |
+
|
| 22 |
+
```python
|
| 23 |
+
from parsimony.catalog import Catalog
|
| 24 |
+
|
| 25 |
+
catalog = await Catalog.load("hf://parsimony-dev/rba")
|
| 26 |
+
```
|