atsuki-yamaguchi commited on
Commit
6bc3f75
·
verified ·
1 Parent(s): 970dd9b

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +29 -0
README.md ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ language:
4
+ - ja
5
+ ---
6
+ BLOOM-1B LAPT Japanese
7
+ ===
8
+
9
+ ## How to use
10
+ ```python
11
+ from transformers import AutoModelForCausalLM
12
+
13
+ model = AutoModelForCausalLM.from_pretrained(
14
+ "bigscience/bloom-1b1"
15
+ )
16
+ model.load_adapter("atsuki-yamaguchi/bloom-1b1-lapt-ja")
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
+ ```