Add dataset metadata
Browse files- dataset_metadata.json +33 -0
dataset_metadata.json
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"dataset_info": {
|
3 |
+
"description": "Datasets for training Two-Tower models",
|
4 |
+
"citation": "@article{msmarco, title={MS MARCO: A Human Generated MAchine Reading COmprehension Dataset}, author={Nguyen, Tri and Rosenberg, Matthew and Song, Xia and Gao, Jianfeng and Tiwary, Saurabh and Majumder, Rangan and Deng, Li}, journal={arXiv preprint arXiv:1611.09268}, year={2016}}",
|
5 |
+
"homepage": "https://huggingface.co/datasets/mlx7-two-tower-data",
|
6 |
+
"license": "mit",
|
7 |
+
"features": {
|
8 |
+
"q_text": {
|
9 |
+
"dtype": "string",
|
10 |
+
"description": "Query text"
|
11 |
+
},
|
12 |
+
"d_pos_text": {
|
13 |
+
"dtype": "string",
|
14 |
+
"description": "Positive (relevant) document text"
|
15 |
+
},
|
16 |
+
"d_neg_text": {
|
17 |
+
"dtype": "string",
|
18 |
+
"description": "Negative (non-relevant) document text"
|
19 |
+
}
|
20 |
+
},
|
21 |
+
"splits": {
|
22 |
+
"train": {
|
23 |
+
"name": "train",
|
24 |
+
"num_examples": "varies by dataset",
|
25 |
+
"dataset_files": [
|
26 |
+
"classic_triplets.parquet",
|
27 |
+
"intra_query_neg.parquet",
|
28 |
+
"multi_pos_multi_neg.parquet"
|
29 |
+
]
|
30 |
+
}
|
31 |
+
}
|
32 |
+
}
|
33 |
+
}
|