File size: 498 Bytes
d562719
 
 
 
 
b4ff7a8
d562719
b4ff7a8
d562719
 
 
b4ff7a8
d562719
b4ff7a8
 
 
 
 
 
 
d562719
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
language: id
inference: false
---

# SQuAD IndoBERT-Lite Base Model

Fine-tuned IndoBERT-Lite from IndoBenchmark using Translated SQuAD datasets.

## How to use

### Using pipeline
```python
from transformers import BertTokenizerFast, pipeline
tokenizer = BertTokenizerFast.from_pretrained(
    'Wikidepia/albert-bahasa-uncased-squad',
    do_lower_case = True,
)
# a) Get predictions
nlp = pipeline('question-answering', model="Wikidepia/albert-bahasa-uncased-squad", tokenizer=tokenizer)
```