File size: 2,157 Bytes
7a22627
736fd46
 
 
 
7a22627
736fd46
 
 
 
 
 
 
 
 
 
7a22627
736fd46
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4aae156
736fd46
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
---
pipeline_tag: feature-extraction
tags:
- feature-extraction
- transformers
license: apache-2.0
language:
- id
metrics:
- accuracy
- f1
- precision
- recall
datasets:
- squad_v2
- natural_questions
---
### indo-dpr-question_encoder-multiset-base
<p style="font-size:16px">Indonesian Dense Passage Retrieval trained on translated SQuADv2.0 and Natural Question dataset in DPR format.</p>


### Evaluation 

| Class | Precision | Recall | F1-Score | Support |
|-------|-----------|--------|----------|---------|
| hard_negative | 0.9961 | 0.9961 | 0.9961 | 384778 |
| positive | 0.8783 | 0.8783 | 0.8783 | 12414 |

| Metric | Value |
|--------|-------|
| Loss | 0.0220 |
| Accuracy | 0.9924 |
| Macro Average | 0.9372 |
| Weighted Average | 0.9924 |
| Accuracy and F1 | 0.9353 |
| Average Rank | 0.2194 |


<p style="font-size:16px">Note: This report is for evaluation on the dev set, after 27288 batches.</p>

### Usage

```python
from transformers import DPRQuestionEncoder, DPRQuestionEncoderTokenizer

tokenizer = DPRQuestionEncoderTokenizer.from_pretrained('firqaaa/indo-dpr-question_encoder-multiset-base')
model = DPRQuestionEncoder.from_pretrained('firqaaa/indo-dpr-question_encoder-multiset-base')
input_ids = tokenizer("Siapakah tokoh antagonis terkuat dalam serial DragonBall Super?", return_tensors='pt')["input_ids"]
embeddings = model(input_ids).pooler_output
```

You can use it using `haystack` as follows:

```
from haystack.nodes import DensePassageRetriever
from haystack.document_stores import InMemoryDocumentStore

retriever = DensePassageRetriever(document_store=InMemoryDocumentStore(),
                                  query_embedding_model="firqaaa/indo-dpr-question_encoder-multiset-base",
                                  passage_embedding_model="firqaaa/indo-dpr-question_encoder-multiset-base",
                                  max_seq_len_query=64,
                                  max_seq_len_passage=256,
                                  batch_size=16,
                                  use_gpu=True,
                                  embed_title=True,
                                  use_fast_tokenizers=True)
```