yahyaabd commited on
Commit
16a87d8
·
verified ·
1 Parent(s): 248379f

Initial upload of empty pairs-class and triplet-all dataset structure

Browse files
Files changed (1) hide show
  1. README.md +79 -0
README.md ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ annotations_creators:
4
+ - expert-generated
5
+ language_creators:
6
+ - found
7
+ language:
8
+ - id
9
+ multilinguality:
10
+ - monolingual
11
+ size_categories:
12
+ - n<1K
13
+ task_categories:
14
+ - feature-extraction
15
+ - sentence-similarity
16
+ pretty_name: BPS Pairs and Triplets Dataset
17
+ tags:
18
+ - pairs
19
+ - triplets
20
+ - information-retrieval
21
+ configs:
22
+ - config_name: pairs-class
23
+ data_files:
24
+ - split: train
25
+ path: pairs-class/train/*
26
+ - config_name: triplet-all
27
+ data_files:
28
+ - split: train
29
+ path: triplet-all/train/*
30
+ dataset_info:
31
+ - config_name: pairs-class
32
+ features:
33
+ - name: query
34
+ dtype: string
35
+ - name: doc
36
+ dtype: string
37
+ - name: label
38
+ dtype: int64
39
+ splits:
40
+ - name: train
41
+ num_bytes: 0
42
+ num_examples: 0
43
+ download_size: 0
44
+ dataset_size: 0
45
+ - config_name: triplet-all
46
+ features:
47
+ - name: anchor
48
+ dtype: string
49
+ - name: positive
50
+ dtype: string
51
+ - name: negative
52
+ dtype: string
53
+ splits:
54
+ - name: train
55
+ num_bytes: 0
56
+ num_examples: 0
57
+ download_size: 0
58
+ dataset_size: 0
59
+ ---
60
+
61
+ # BPS Pairs and Triplets Dataset
62
+
63
+ This dataset contains two configurations for training information retrieval models:
64
+
65
+ - **pairs-class**: Pairs of queries and documents with relevance labels (currently empty).
66
+ - **Split**: train
67
+ - **Number of examples**: 0
68
+ - Each example consists of:
69
+ - `query`: The query text.
70
+ - `doc`: The document text.
71
+ - `label`: Relevance label (e.g., 0 or 1).
72
+
73
+ - **triplet-all**: Triplets of queries with positive and negative examples (currently empty).
74
+ - **Split**: train
75
+ - **Number of examples**: 0
76
+ - Each example consists of:
77
+ - `anchor`: The query text.
78
+ - `positive`: A positive (relevant) document text.
79
+ - `negative`: A negative (irrelevant) document text.