fzoll commited on
Commit
b875b69
·
verified ·
1 Parent(s): bf91808

Upload folder using huggingface_hub

Browse files
Files changed (4) hide show
  1. README.md +57 -0
  2. corpus.jsonl +0 -0
  3. queries.jsonl +0 -0
  4. relevance.jsonl +0 -0
README.md ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ - The corpus set consists of the legal documents.
47
+ - The query set includes questions pertaining to legal documents.
48
+
49
+ **Usage**
50
+ ```
51
+ import datasets
52
+
53
+ # Download the dataset
54
+ queries = datasets.load_dataset("embedding-benchmark/ChatDoctor_HealthCareMagic", "queries")
55
+ documents = datasets.load_dataset("embedding-benchmark/ChatDoctor_HealthCareMagic", "corpus")
56
+ pair_labels = datasets.load_dataset("embedding-benchmark/ChatDoctor_HealthCareMagic", "default")
57
+ ```
corpus.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
queries.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
relevance.jsonl ADDED
The diff for this file is too large to render. See raw diff