gpt2-base-fa / README.md
arxyzan's picture
Update metadata with huggingface_hub
dfcd6e8
|
raw
history blame
444 Bytes
---
language:
- fa
library_name: hezar
tags:
- text-generation
- hezar
pipeline_tag: text-generation
---
The original [ParsGPT2](https://huggingface.co/HooshvareLab/gpt2-fa) model ported to Hezar for compatibility.
## Usage
```
pip install hezar
```
```python
from hezar import Model
model = Model.load("gpt2-base-fa")
text = " در یک اتفاق شگفت انگیز، پژوهشگران"
outputs = model.predict(text)
print(outputs)
```