atsuki-yamaguchi commited on
Commit
07cc18a
1 Parent(s): ec2c17b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +43 -0
README.md ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ license: gemma
4
+ language:
5
+ - my
6
+ base_model: google/gemma-2-9b
7
+ library_name: transformers
8
+ ---
9
+ # Gemma2 9B for Burmese: No vocabulary adaptation
10
+
11
+ This model is built on top of Gemma2 9B adapted for Burmese using 30K target language sentences sampled from CC-100.
12
+
13
+ ## Model Details
14
+
15
+ * **Vocabulary**: This model has no additional target vocabulary. It retains the original vocabulary of Gemma2 9B.
16
+
17
+
18
+ ## Model Description
19
+
20
+ - **Language:** Burmese
21
+ - **License:** Gemma Terms of Use
22
+ - **Fine-tuned from model:** google/gemma-2-9b
23
+
24
+
25
+ ## Model Sources
26
+
27
+ - **Repository:** https://github.com/gucci-j/lowres-cve
28
+ - **Paper:** https://arxiv.org/abs/2406.11477
29
+
30
+ ## How to Get Started with the Model
31
+ Use the code below to get started with the model.
32
+ ```python
33
+ from transformers import AutoTokenizer, AutoModelForCausalLM
34
+
35
+ model = AutoModelForCausalLM.from_pretrained(
36
+ "atsuki-yamaguchi/gemma-2-9b-my-30K-lapt"
37
+ )
38
+ tokenizer = AutoTokenizer.from_pretrained(
39
+ "atsuki-yamaguchi/gemma-2-9b-my-30K-lapt"
40
+ )
41
+ ```
42
+
43
+