File size: 506 Bytes
df2d295 54d1a28 df2d295 |
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 |
---
language:
- fa
library_name: hezar
tags:
- fill-mask
- hezar
pipeline_tag: fill-mask
base_model:
- hezarai/roberta-base-fa
---
A RoBERTa model for mask filling. The base RoBERTa model is initialized from https://huggingface.co./HooshvareLab/roberta-fa-zwnj-base.
## Usage
```
pip install hezar
```
```python
from hezar.models import Model
model = Model.load("hezarai/roberta-fa-mask-filling")
inputs = ["ایشالا از <mask> شروع میکنم"]
outputs = model.predict(inputs)
print(outputs)
``` |