skirres commited on
Commit
04e4185
1 Parent(s): 7fe1e71

Initial commit (#1)

Browse files

- Model sources and card (0f45de58a1757019fc73447833a950f3c5e16cb0)

Files changed (4) hide show
  1. README.md +84 -0
  2. config.json +23 -0
  3. pytorch_model.bin +3 -0
  4. tokenizer.json +0 -0
README.md ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ ---
5
+
6
+ # Model Card for `passage-ranker-v1-L-en`
7
+
8
+ This model is a passage ranker developed by Sinequa. It produces a relevance score given a query-passage pair and is
9
+ used to order search results.
10
+
11
+ Model name: `passage-ranker-v1-L-en`
12
+
13
+ ## Supported Languages
14
+
15
+ The model was trained and tested in the following languages:
16
+
17
+ - English
18
+
19
+ ## Scores
20
+
21
+ | Metric | Value |
22
+ |:--------------------|------:|
23
+ | Relevance (NDCG@10) | 0.466 |
24
+
25
+ Note that the relevance score is computed as an average over 14 retrieval datasets (see
26
+ [details below](#evaluation-metrics)).
27
+
28
+ ## Inference Times
29
+
30
+ | GPU | Batch size 32 |
31
+ |:-----------|--------------:|
32
+ | NVIDIA A10 | 83 ms |
33
+ | NVIDIA T4 | 356 ms |
34
+
35
+ The inference times only measure the time the model takes to process a single batch, it does not include pre- or
36
+ post-processing steps like the tokenization.
37
+
38
+ ## Requirements
39
+
40
+ - Minimal Sinequa version: 11.10.0
41
+ - GPU memory usage: 1060 MiB
42
+
43
+ Note that GPU memory usage only includes how much GPU memory the actual model consumes on an NVIDIA T4 GPU with a batch
44
+ size of 32. It does not include the fix amount of memory that is consumed by the ONNX Runtime upon initialization which
45
+ can be around 0.5 to 1 GiB depending on the used GPU.
46
+
47
+ ## Model Details
48
+
49
+ ### Overview
50
+
51
+ - Number of parameters: 109 million
52
+ - Base language model: [English BERT-Base](https://huggingface.co/bert-base-uncased)
53
+ - Insensitive to casing and accents
54
+ - Training procedure: [MonoBERT](https://arxiv.org/abs/1901.04085)
55
+
56
+ ### Training Data
57
+
58
+ - Probably-Asked Questions
59
+ ([Paper](https://arxiv.org/abs/2102.07033),
60
+ [Official Page](https://github.com/facebookresearch/PAQ))
61
+
62
+ ### Evaluation Metrics
63
+
64
+ To determine the relevance score, we averaged the results that we obtained when evaluating on the datasets of the
65
+ [BEIR benchmark](https://github.com/beir-cellar/beir). Note that all these datasets are in English.
66
+
67
+ | Dataset | NDCG@10 |
68
+ |:------------------|--------:|
69
+ | Average | 0.466 |
70
+ | | |
71
+ | Arguana | 0.567 |
72
+ | CLIMATE-FEVER | 0.162 |
73
+ | DBPedia Entity | 0.363 |
74
+ | FEVER | 0.721 |
75
+ | FiQA-2018 | 0.304 |
76
+ | HotpotQA | 0.680 |
77
+ | MS MARCO | 0.342 |
78
+ | NFCorpus | 0.346 |
79
+ | NQ | 0.487 |
80
+ | Quora | 0.779 |
81
+ | SCIDOCS | 0.150 |
82
+ | SciFact | 0.649 |
83
+ | TREC-COVID | 0.683 |
84
+ | Webis-Touche-2020 | 0.287 |
config.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "BertForSequenceClassification"
4
+ ],
5
+ "attention_probs_dropout_prob": 0.1,
6
+ "classifier_dropout": null,
7
+ "hidden_act": "gelu",
8
+ "hidden_dropout_prob": 0.1,
9
+ "hidden_size": 768,
10
+ "initializer_range": 0.02,
11
+ "intermediate_size": 3072,
12
+ "layer_norm_eps": 1e-12,
13
+ "max_position_embeddings": 512,
14
+ "model_type": "bert",
15
+ "num_attention_heads": 12,
16
+ "num_hidden_layers": 12,
17
+ "pad_token_id": 0,
18
+ "position_embedding_type": "absolute",
19
+ "transformers_version": "4.23.1",
20
+ "type_vocab_size": 2,
21
+ "use_cache": true,
22
+ "vocab_size": 30522
23
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fbb65f6a347a625bda6c60b7ae1a8f833c61531ac5449a42347b3b77556d1393
3
+ size 438003309
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff