tomaarsen HF staff commited on
Commit
f9e894e
1 Parent(s): aaedb57

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +33 -0
README.md CHANGED
@@ -1,4 +1,16 @@
1
  ---
 
 
 
 
 
 
 
 
 
 
 
 
2
  dataset_info:
3
  config_name: pair
4
  features:
@@ -18,3 +30,24 @@ configs:
18
  - split: train
19
  path: pair/train-*
20
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - en
4
+ multilinguality:
5
+ - monolingual
6
+ size_categories:
7
+ - 100K<n<1M
8
+ task_categories:
9
+ - feature-extraction
10
+ - sentence-similarity
11
+ pretty_name: Natural Questions
12
+ tags:
13
+ - sentence-transformers
14
  dataset_info:
15
  config_name: pair
16
  features:
 
30
  - split: train
31
  path: pair/train-*
32
  ---
33
+
34
+ # Dataset Card for Natural Questions
35
+
36
+ This dataset is a collection of question-answer pairs from the Natural Questions dataset. See [Natural Questions](https://ai.google.com/research/NaturalQuestions) for additional information.
37
+ This dataset can be used directly with Sentence Transformers to train embedding models.
38
+
39
+ ## Dataset Subsets
40
+
41
+ ### `pair` subset
42
+
43
+ * Columns: "question", "answer"
44
+ * Column types: `str`, `str`
45
+ * Examples:
46
+ ```python
47
+ {
48
+ 'query': 'the si unit of the electric field is',
49
+ 'answer': 'Electric field An electric field is a field that surrounds electric charges. It represents charges attracting or repelling other electric charges by exerting force.[1] [2] Mathematically the electric field is a vector field that associates to each point in space the force, called the Coulomb force, that would be experienced per unit of charge, by an infinitesimal test charge at that point.[3] The units of the electric field in the SI system are newtons per coulomb (N/C), or volts per meter (V/m). Electric fields are created by electric charges, and by time-varying magnetic fields. Electric fields are important in many areas of physics, and are exploited practically in electrical technology. On an atomic scale, the electric field is responsible for the attractive force between the atomic nucleus and electrons that holds atoms together, and the forces between atoms that cause chemical bonding. The electric field and the magnetic field together form the electromagnetic force, one of the four fundamental forces of nature.',
50
+ }
51
+ ```
52
+ * Collection strategy: Reading the NQ train dataset from [embedding-training-data](https://huggingface.co/datasets/sentence-transformers/embedding-training-data).
53
+ * Deduplified: No