fzoll commited on
Commit
bfeaa12
·
verified ·
1 Parent(s): 83e4541

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +56 -0
README.md ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - text-retrieval
4
+ task_ids:
5
+ - document-retrieval
6
+ config_names:
7
+ - corpus
8
+ tags:
9
+ - text-retrieval
10
+ dataset_info:
11
+ - config_name: default
12
+ features:
13
+ - name: query-id
14
+ dtype: string
15
+ - name: corpus-id
16
+ dtype: string
17
+ - name: score
18
+ dtype: float64
19
+ - config_name: corpus
20
+ features:
21
+ - name: id
22
+ dtype: string
23
+ - name: text
24
+ dtype: string
25
+ - config_name: queries
26
+ features:
27
+ - name: id
28
+ dtype: string
29
+ - name: text
30
+ dtype: string
31
+ configs:
32
+ - config_name: default
33
+ data_files:
34
+ - split: test
35
+ path: relevance.jsonl
36
+ - config_name: corpus
37
+ data_files:
38
+ - split: corpus
39
+ path: corpus.jsonl
40
+ - config_name: queries
41
+ data_files:
42
+ - split: queries
43
+ path: queries.jsonl
44
+ ---
45
+
46
+ WikiSQL is a dataset comprising 80,654 hand-annotated examples of natural language questions and corresponding SQL queries across 24,241 tables from Wikipedia.
47
+
48
+ **Usage**
49
+ ```
50
+ import datasets
51
+
52
+ # Download the dataset
53
+ queries = datasets.load_dataset("embedding-benchmark/MBPP", "queries")
54
+ documents = datasets.load_dataset("embedding-benchmark/MBPP", "corpus")
55
+ pair_labels = datasets.load_dataset("embedding-benchmark/MBPP", "default")
56
+ ```