raphaelsty commited on
Commit
b90d9df
1 Parent(s): 17068cd

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +50 -3
README.md CHANGED
@@ -1,3 +1,50 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ multilinguality:
5
+ - monolingual
6
+ size_categories:
7
+ - <1K
8
+ task_categories:
9
+ - feature-extraction
10
+ - sentence-similarity
11
+ pretty_name: ms-marco-mini
12
+ tags:
13
+ - sentence-transformers
14
+ - colbert
15
+ - lightonai
16
+ dataset_info:
17
+ - config_name: triplet
18
+ features:
19
+ - name: query
20
+ dtype: string
21
+ - name: positive
22
+ dtype: string
23
+ - name: negative
24
+ dtype: string
25
+ splits:
26
+ - name: train
27
+ num_examples: 30
28
+ configs:
29
+ - config_name: triplet
30
+ data_files:
31
+ - split: train
32
+ path: triplet/train-*
33
+ ---
34
+
35
+ # ms-marco-mini
36
+
37
+ This dataset gathers 30 triplets [MS MARCO](https://microsoft.github.io/msmarco/) to provide an example of triplet-based dataset formatting.
38
+
39
+ #### `triplet` subset
40
+
41
+ * Columns: "query", "positive", "negative"
42
+ * Column types: `str`, `str`, `str`
43
+ * Examples:
44
+ ```python
45
+ {
46
+ "query": "what are the liberal arts?",
47
+ "positive": 'liberal arts. 1. the academic course of instruction at a college intended to provide general knowledge and comprising the arts, humanities, natural sciences, and social sciences, as opposed to professional or technical subjects.',
48
+ "negative": 'The New York State Education Department requires 60 Liberal Arts credits in a Bachelor of Science program and 90 Liberal Arts credits in a Bachelor of Arts program. In the list of course descriptions, courses which are liberal arts for all students are identified by (Liberal Arts) after the course number.'
49
+ }
50
+ ```