Datasets:
Update README.md with file configurations
Browse files
README.md
CHANGED
|
@@ -8,6 +8,20 @@ tags:
|
|
| 8 |
- search
|
| 9 |
- reranking
|
| 10 |
license: cc-by-4.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
# DevRev Search Dataset
|
|
@@ -33,9 +47,9 @@ The **DevRev Search Dataset** contains transformed and anonymized user queries o
|
|
| 33 |
```python
|
| 34 |
from datasets import load_dataset
|
| 35 |
|
| 36 |
-
annotated_queries = load_dataset("devrev/search",
|
| 37 |
-
knowledge_base = load_dataset("devrev/search",
|
| 38 |
-
test_queries = load_dataset("devrev/search",
|
| 39 |
```
|
| 40 |
|
| 41 |
## Dataset Creation
|
|
|
|
| 8 |
- search
|
| 9 |
- reranking
|
| 10 |
license: cc-by-4.0
|
| 11 |
+
configs:
|
| 12 |
+
- config_name: annotated_queries
|
| 13 |
+
data_files:
|
| 14 |
+
- split: train
|
| 15 |
+
path: annotated_queries.parquet
|
| 16 |
+
default: true
|
| 17 |
+
- config_name: knowledge_base
|
| 18 |
+
data_files:
|
| 19 |
+
- split: corpus
|
| 20 |
+
path: knowledge_base.parquet
|
| 21 |
+
- config_name: test_queries
|
| 22 |
+
data_files:
|
| 23 |
+
- split: test
|
| 24 |
+
path: test_queries.parquet
|
| 25 |
---
|
| 26 |
|
| 27 |
# DevRev Search Dataset
|
|
|
|
| 47 |
```python
|
| 48 |
from datasets import load_dataset
|
| 49 |
|
| 50 |
+
annotated_queries = load_dataset("devrev/search", "annotated_queries", split="train")
|
| 51 |
+
knowledge_base = load_dataset("devrev/search", "knowledge_base", split="corpus")
|
| 52 |
+
test_queries = load_dataset("devrev/search", "test_queries", split="test")
|
| 53 |
```
|
| 54 |
|
| 55 |
## Dataset Creation
|