AingHongsin commited on
Commit
b55f5f8
·
verified ·
1 Parent(s): 7f0a13c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +32 -9
README.md CHANGED
@@ -1,9 +1,32 @@
1
- ---
2
- license: mit
3
- language:
4
- - km
5
- - en
6
- metrics:
7
- - bleu
8
- pipeline_tag: question-answering
9
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # SurMuy
2
+
3
+ Welcome to the repository for SurMuy,
4
+ SurMuy is a question-answer model fine-tuned from the SeaLLM-7B-V2.5, specifically designed to handle queries in Khmer. By utilizing a specialized dataset of Khmer questions and answers, SurMuy is optimized for high accuracy and contextual relevance in the Cambodian language. This makes it highly effective for educational, customer service, and other interactive applications requiring fluent Khmer language processing.
5
+
6
+ ## Model Details
7
+ - **Model Version:** 1.0
8
+ - **Model Type:** Gemma
9
+ - **Pre-trained on:** Decoder-only Transformers
10
+ - **Fine-tuned for:** Chatbot with Khmer Natives language
11
+ - **Developed by:** Aing Hongsin
12
+ - **Base Model:** [SeaLLM-7B-v2.5](https://huggingface.co/SeaLLMs/SeaLLM-7B-v2.5)
13
+ - **Contact:** ainghongsin9999@gmail.com
14
+
15
+ ### Requirements
16
+
17
+ - Python 3.12+
18
+ - torch 1.10.0+
19
+ - transformers 4.4.0+
20
+ - optimum>=1.2.0+
21
+ - numpy>=1.21.0+
22
+
23
+ ### Used
24
+
25
+ Load this model with transformers
26
+
27
+ ```bash
28
+ # Load model directly
29
+ from transformers import AutoTokenizer, AutoModelForCausalLM
30
+
31
+ tokenizer = AutoTokenizer.from_pretrained("AingHongsin/SurMuy_v1_512512201")
32
+ model = AutoModelForCausalLM.from_pretrained("AingHongsin/SurMuy_v1_512512201")