shuttie commited on
Commit
fa90e60
1 Parent(s): ec33a8a

add readme

Browse files
Files changed (1) hide show
  1. README.md +19 -1
README.md CHANGED
@@ -6,4 +6,22 @@ tags:
6
  - msmarco
7
  - nlp
8
  - search
9
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  - msmarco
7
  - nlp
8
  - search
9
+ ---
10
+
11
+ # A 10K docs sample from MS MARCO
12
+
13
+ This is a sample dataset of random 10K rows from the [MS MARCO](https://microsoft.github.io/msmarco/) dataset. This is used in Nixiesearch [quickstart guide](https://www.nixiesearch.ai/quickstart/) to save some time indexing a full MSMARCO with 8M documents.
14
+
15
+ ## Schema
16
+
17
+ This is a JSONL-formatted dataset with only two fields inside: `id` for document identifier and `text` for the actual text snippet.
18
+ ```json
19
+ {
20
+ "id": "0",
21
+ "text": "The presence of communication amid scientific minds was equally important to the success of the Manhattan Project as scientific intellect was. The only cloud hanging over the impressive achievement of the atomic researchers and engineers is what their success truly meant; hundreds of thousands of innocent lives obliterated."
22
+ }
23
+ ```
24
+
25
+ ## License
26
+
27
+ Apache 2.0