tomaarsen HF staff commited on
Commit
bfe9460
1 Parent(s): b23dd45

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +46 -0
README.md CHANGED
@@ -1,4 +1,14 @@
1
  ---
 
 
 
 
 
 
 
 
 
 
2
  dataset_info:
3
  - config_name: triplet
4
  features:
@@ -38,3 +48,39 @@ configs:
38
  - split: train
39
  path: triplet-all/train-*
40
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - en
4
+ multilinguality:
5
+ - monolingual
6
+ task_categories:
7
+ - feature-extraction
8
+ - sentence-similarity
9
+ pretty_name: Trivia QA with Triplets
10
+ tags:
11
+ - sentence-transformers
12
  dataset_info:
13
  - config_name: triplet
14
  features:
 
48
  - split: train
49
  path: triplet-all/train-*
50
  ---
51
+
52
+ # Dataset Card for Trivia QA with Triplets
53
+
54
+ This is a reformatting of the Trivia QA dataset used to train the [BGE-M3 model](https://huggingface.co/BAAI/bge-m3). See the full BGE-M3 dataset in [Shitao/bge-m3-data](https://huggingface.co/datasets/Shitao/bge-m3-data).
55
+
56
+ ## Dataset Subsets
57
+
58
+ ### `triplet` subset
59
+
60
+ * Columns: "anchor", "positive", "negative"
61
+ * Column types: `str`, `str`, `str`
62
+ * Examples:
63
+ ```python
64
+ {
65
+ 'anchor': 'Which American-born Sinclair won the Nobel Prize for Literature in 1930?',
66
+ 'positive': 'Sinclair Lewis Sinclair Lewis Harry Sinclair Lewis (February 7, 1885 – January 10, 1951) was an American novelist, short-story writer, and playwright. In 1930, he became the first writer from the United States to receive the Nobel Prize in Literature, which was awarded "for his vigorous and graphic art of description and his ability to create, with wit and humor, new types of characters." His works are known for their insightful and critical views of American capitalism and materialism between the wars. He is also respected for his strong characterizations of modern working women. H. L. Mencken wrote of him, "[If] there',
67
+ 'negative': 'Nobel Prize in Literature analyze its importance on potential future Nobel Prize in Literature laureates. Only Alice Munro (2009) has been awarded with both. The Neustadt International Prize for Literature is regarded as one of the most prestigious international literary prizes, often referred to as the American equivalent to the Nobel Prize. Like the Nobel or the Man Booker International Prize, it is awarded not for any one work, but for an entire body of work. It is frequently seen as an indicator of who may be awarded the Nobel Prize in Literature. Gabriel García Márquez (1972 Neustadt, 1982 Nobel), Czesław Miłosz (1978 Neustadt,'
68
+ }
69
+ ```
70
+ * Collection strategy: Reading the Trivia QA jsonl file in [Shitao/bge-m3-data](https://huggingface.co/datasets/Shitao/bge-m3-data) and taking only the first positive and first negative.
71
+ * Deduplified: No
72
+
73
+ ### `triplet-all` subset
74
+
75
+ * Columns: "anchor", "positive", "negative"
76
+ * Column types: `str`, `str`, `str`
77
+ * Examples:
78
+ ```python
79
+ {
80
+ 'anchor': 'Which American-born Sinclair won the Nobel Prize for Literature in 1930?',
81
+ 'positive': 'Sinclair Lewis Sinclair Lewis Harry Sinclair Lewis (February 7, 1885 – January 10, 1951) was an American novelist, short-story writer, and playwright. In 1930, he became the first writer from the United States to receive the Nobel Prize in Literature, which was awarded "for his vigorous and graphic art of description and his ability to create, with wit and humor, new types of characters." His works are known for their insightful and critical views of American capitalism and materialism between the wars. He is also respected for his strong characterizations of modern working women. H. L. Mencken wrote of him, "[If] there',
82
+ 'negative': 'Nobel Prize in Literature analyze its importance on potential future Nobel Prize in Literature laureates. Only Alice Munro (2009) has been awarded with both. The Neustadt International Prize for Literature is regarded as one of the most prestigious international literary prizes, often referred to as the American equivalent to the Nobel Prize. Like the Nobel or the Man Booker International Prize, it is awarded not for any one work, but for an entire body of work. It is frequently seen as an indicator of who may be awarded the Nobel Prize in Literature. Gabriel García Márquez (1972 Neustadt, 1982 Nobel), Czesław Miłosz (1978 Neustadt,'
83
+ }
84
+ ```
85
+ * Collection strategy: Reading the Trivia QA jsonl file in [Shitao/bge-m3-data](https://huggingface.co/datasets/Shitao/bge-m3-data) and taking each negative, but making a separate sample with each of the negatives.
86
+ * Deduplified: No