Pham Van Ngoan
commited on
Commit
•
c4401b6
1
Parent(s):
a1d79f7
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
tags:
|
3 |
+
- text-generation
|
4 |
+
- llama-2
|
5 |
+
- llama-2-7B
|
6 |
+
- llama2-vietnamese
|
7 |
+
- vietnamese
|
8 |
+
---
|
9 |
+
# Model Card for Llama 2 Fine-Tuned on Vietnamese Instructions
|
10 |
+
|
11 |
+
## Model Details
|
12 |
+
- Model Name: Llama-2-7b-vi-sample
|
13 |
+
- Architecture: Llama 2 7B
|
14 |
+
- Fine-tuning Data Size: 20,000 instruction samples
|
15 |
+
- Purpose: To demonstrate the performance of the Llama 2 model on Vietnamese and gather initial insights. A more comprehensive model and evaluation will be released soon.
|
16 |
+
- Availability: The model checkpoint can be accessed on Hugging Face: ngoantech/Llama-2-7b-vi-sample
|
17 |
+
|
18 |
+
## Intended Use
|
19 |
+
This model is intended for researchers, developers, and enthusiasts who are interested in understanding the performance of the Llama 2 model on Vietnamese. It can be used for generating Vietnamese text based on given instructions or for any other task that requires a Vietnamese language model.
|
20 |
+
|
21 |
+
## Limitations
|
22 |
+
Data Size: The model was fine-tuned on a relatively small dataset of 20,000 instruction samples, which might not capture the full complexity and nuances of the Vietnamese language.
|
23 |
+
Preliminary Model: This is an initial experiment with the Llama 2 architecture on Vietnamese. More refined versions and evaluations will be available soon.
|
24 |
+
Performance
|
25 |
+
Specific performance metrics on this fine-tuned model will be provided in the upcoming comprehensive evaluation.
|
26 |
+
|
27 |
+
## Ethical Considerations
|
28 |
+
Bias and Fairness: Like any other machine learning model, there is a possibility that this model might reproduce or amplify biases present in the training data.
|
29 |
+
Use in Critical Systems: As this is a preliminary model, it is recommended not to use it for mission-critical applications without proper validation.
|
30 |
+
Fine-tuning Data
|
31 |
+
The model was fine-tuned on a custom dataset of 20,000 instruction samples in Vietnamese. More details about the composition and source of this dataset will be provided in the detailed evaluation report.
|
32 |
+
|
33 |
+
## Usage
|
34 |
+
To use this model via the Hugging Face API:
|
35 |
+
|
36 |
+
```python
|
37 |
+
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
|
38 |
+
|
39 |
+
tokenizer = AutoTokenizer.from_pretrained("ngoantech/Llama-2-7b-vi-sample")
|
40 |
+
model = AutoModelForSeq2SeqLM.from_pretrained("ngoantech/Llama-2-7b-vi-sample")
|
41 |
+
|
42 |
+
inputs = tokenizer.encode("YOUR INSTRUCTION HERE", return_tensors="pt")
|
43 |
+
outputs = model.generate(inputs)
|
44 |
+
decoded = tokenizer.decode(outputs[0], skip_special_tokens=True)
|
45 |
+
print(decoded)
|
46 |
+
```
|
47 |
+
|
48 |
+
## Credits
|
49 |
+
I would like to express our gratitude to the creators of the Llama 2 architecture and the Hugging Face community for their tools and resources.
|