giguru commited on
Commit
1eeb028
1 Parent(s): d1d0c7f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +54 -2
README.md CHANGED
@@ -1,3 +1,55 @@
1
- QuReTeC model from the published SIGIR 2020 paper: Query Resolution for Conversational Search with Limited Supervision by N. Voskarides, D. Li, P. Ren, E. Kanoulas and M. de Rijke. [pdf](https://arxiv.org/abs/2005.11723). Uploaded by G. Scheuer.
2
 
3
- It is based on bert-large-uncased with a max sequence length of 300.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # QuReTec: query resolution model
2
 
3
+ QuReTeC is a query resolution model. It finds the relevant terms in a question history.
4
+ It is based on **bert-large-uncased** with a max sequence length of 300.
5
+
6
+ # Config details
7
+ Training and evaluation was done using the following BertConfig:
8
+
9
+ ```json
10
+ BertConfig {
11
+ "_name_or_path": "uva-irlab/quretec",
12
+ "architectures": ["BertForMaskedLM"],
13
+ "attention_probs_dropout_prob": 0.1,
14
+ "finetuning_task": "ner",
15
+ "gradient_checkpointing": false,
16
+ "hidden_act": "gelu",
17
+ "hidden_dropout_prob": 0.4,
18
+ "hidden_size": 1024,
19
+ "id2label": {
20
+ "0": "[PAD]",
21
+ "1": "O",
22
+ "2": "REL",
23
+ "3": "[CLS]",
24
+ "4": "[SEP]"
25
+ },
26
+ "initializer_range": 0.02,
27
+ "intermediate_size": 4096,
28
+ "label2id": {
29
+ "O": 1,
30
+ "REL": 2,
31
+ "[CLS]": 3,
32
+ "[PAD]": 0,
33
+ "[SEP]": 4
34
+ },
35
+ "layer_norm_eps": 1e-12,
36
+ "max_position_embeddings": 512,
37
+ "model_type": "bert",
38
+ "num_attention_heads": 16,
39
+ "num_hidden_layers": 24,
40
+ "pad_token_id": 0,
41
+ "position_embedding_type": "absolute",
42
+ "transformers_version": "4.6.1",
43
+ "type_vocab_size": 2,
44
+ "use_cache": true,
45
+ "vocab_size": 30522
46
+ }
47
+ ```
48
+
49
+ # Original authors
50
+
51
+ QuReTeC model from the published SIGIR 2020 paper: Query Resolution for Conversational Search with Limited Supervision by N. Voskarides, D. Li, P. Ren, E. Kanoulas and M. de Rijke. [[pdf]](https://arxiv.org/abs/2005.11723).
52
+
53
+ # Contributions
54
+
55
+ Uploaded by G. Scheuer ([website](https://giguruscheuer.com))