bert_on_airbnb / README.md
iryska's picture
Create README.md
6b785cc
|
raw
history blame
283 Bytes
## Tokenizer
This model uses the `bert-base-uncased` tokenizer.
To use this model, make sure you have the tokenizer installed and initialized with the following code:
```python
from transformers import BertTokenizer
tokenizer = BertTokenizer.from_pretrained('bert-base-uncased')