Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
language:
|
| 4 |
+
- ar
|
| 5 |
+
---
|
| 6 |
+
TigerBot-7B LAPT Arabic
|
| 7 |
+
===
|
| 8 |
+
|
| 9 |
+
## How to use
|
| 10 |
+
```python
|
| 11 |
+
from transformers import AutoModelForCausalLM
|
| 12 |
+
|
| 13 |
+
model = AutoModelForCausalLM.from_pretrained(
|
| 14 |
+
"TigerResearch/tigerbot-7b-base"
|
| 15 |
+
)
|
| 16 |
+
model.load_adapter("atsuki-yamaguchi/tigerbot-7b-base-lapt-ar")
|
| 17 |
+
```
|
| 18 |
+
|
| 19 |
+
## Citation
|
| 20 |
+
```
|
| 21 |
+
@article{yamaguchi2024empirical,
|
| 22 |
+
title={An Empirical Study on Cross-lingual Vocabulary Adaptation for Efficient Generative {LLM} Inference},
|
| 23 |
+
author={Atsuki Yamaguchi and Aline Villavicencio and Nikolaos Aletras},
|
| 24 |
+
journal={ArXiv},
|
| 25 |
+
year={2024},
|
| 26 |
+
volume={abs/2402.10712},
|
| 27 |
+
url={https://arxiv.org/abs/2402.10712}
|
| 28 |
+
}
|
| 29 |
+
```
|
| 30 |
+
|
| 31 |
+
## Link
|
| 32 |
+
For more details, please visit https://github.com/gucci-j/llm-cva
|