library_name: transformers
tags:
- llama-factory
license: apache-2.0
datasets:
- wikimedia/wikipedia
language:
- vi
- en
extra_gated_prompt: Please read the Apache 2 license before accepting it.
extra_gated_fields:
Name: text
Email: text
Affiliation: text
Country: text
I accept the Apache 2 License Agreement: checkbox
URA-LLaMa-2.1 8B
Model Details
Model Description
With a strong commitment to enhancing the quality of large language models for the Vietnamese language, a collaborative effort was undertaken by Vietnamese researchers hailing from Ho Chi Minh University of Technology (HCMUT) - Vietnam National University HCMC and Stanford University. Our endeavor involved the meticulous fine-tuning of various models using Vietnamese articles sourced from Wikipedia and other sources (if neccessary). In line with our dedication to fostering community progress, we are pleased to offer our models free of charge for research purposes. For those who wish to delve further into our research and its details, we encourage you to explore the comprehensive information provided below.
- Developed by:
- Duc Q. Nguyen
- Sang T. Truong
- Toan D. V. Nguyen
- Dong D. Le
- Nhi N. Truong
- Tho Quan
- Sanmi Koyejo
- Funded by:
- Microsoft Accelerating Foundation Models Research program
- Stanford University
- Ho Chi Minh University of Technology (HCMUT) - VNU-HCM
- DSciLab (Faculty of Computer Science & Engineering, HCMUT - VNU-HCM)
- Model type: Text generation
- Languages: Vietnamese, English
- License: Apache 2.0
- Finetuned from model: LLaMa-3.1 8B
Model Sources
We publicly provide starter source code for fine-tuning, evaluation adn deployment of our models.
Uses
Direct Use
You can use our models to perform various tasks containing
- Question answering (with context)
- Summarization
- Language modelling
- Text classification
- Translation
- Code generation
- Reasoning
Downstream Use
This model can serve as an encoder for a wide range of downstream tasks, spanning from pure natural language processing to combinations of natural language processing with computer vision or speech processing.
Out-of-Scope Use
While our models have undergone fine-tuning using extensive Vietnamese datasets, they may not perform optimally in specialized domains necessitating profound domain expertise, such as medicine, politics, chemistry, etc. We kindly request that you refrain from employing our models for political purposes or any endeavors that may cause harm to individuals or compromise the sovereignty and territorial integrity of Vietnam.
Bias, Risks, and Limitations
Unless required by applicable law, the URA-LLaMa materials and any output and results therefrom are provided on an "as is" basis, without warranties of any kind, either express or implied, including, without limitation, any warranties of title, non-infringement, merchantability, or fitness for a particular purpose. you are solely responsible for determining the appropriateness of using or redistributing the URA-LLaMa materials and assume any risks associated with your use of the URA-LLaMa materials and any output and results.
Recommendations
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. In order for the model to work well, you may need perform prompt engineering to create appropriate prompts before inference.
How to Get Started with the Model
If you intend to use Ollama, please check this repo. Use the code below to get started with the model.
import transformers
from transformers import AutoModelForCausalLM, AutoTokenizer
if __name__ == "__main__":
# Load model
model = AutoModelForCausalLM.from_pretrained(
"ura-hcmut/ura-llama-2.1-8b",
device_map="auto"
)
model.eval()
# Load tokenizer
tokenizer = AutoTokenizer.from_pretrained(
"ura-hcmut/ura-llama-2.1-8b",
trust_remote_code=True
)
pipeline = transformers.pipeline(
model=model,
tokenizer=tokenizer,
return_full_text=False,
task='text-generation'
)
query_template = "<|start_header_id|>user<|end_header_id|>\n{query}<|eot_id|>\n<|start_header_id|>assistant<|end_header_id|>\n"
while True:
query = input("Query: ")
if query == "exit":
break
query = query_template.format(query=query)
answer = pipeline(query)[0]["generated_text"]
print(answer)
Finetuning Details
Finetuning Data
List of datasets used for finetuning:
- Vietnamese Wikipedia: https://huggingface.co/datasets/vietgpt/wikipedia_vi
Finetuning Procedure
We utilize the causal language modelling (next token prediction) procedure to finetune our models. Available tutorial is available at https://huggingface.co/docs/transformers/tasks/language_modeling. Our framework is available at: https://github.com/martinakaduc/SUra-Factory
Finetuning Hyperparameters
- Training regime: BFloat16 Mixed Precision
- Batch size: 1024
- Optimizer: AdamW
- Learning rate: 1e-4
- Epochs: 2
Evaluation
Our models are tested with various tasks. The detail of evaluation process can be found at our Leaderboard.
Environmental Impact
Carbon emissions can be estimated using the Machine Learning Impact calculator presented in Lacoste et al. (2019).
- Hardware Type: 1 x A100 40GB
- Hours used: 72h
- Carbon Emitted: ~8 kg CO2 eq.
Citation
If you use URA-LLaMa materials in your research, please cite our model(s) as below.
BibTeX:
@inproceedings{crossing2024,
title = "Crossing Linguistic Horizons: Finetuning and Comprehensive Evaluation of Vietnamese Large Language Models",
author = "Truong, Sang T. and Nguyen, Duc Q. and Nguyen, Toan D. V. and Le, Dong D. and Truong, Nhi N. and Quan, Tho and Koyejo, Sanmi",
booktitle = "Proceedings of the 2024 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies",
month = June,
year = "2024",
address = "Seattle, Washington",
publisher = "Association for Computational Linguistics",
url = "",
pages = "",
}
Model Card Authors
Contact
- Mr. Duc Q. Nguyen: [email protected]
- Mr. Sang T. Truong: [email protected]
- Assoc. Prof. Tho Quan: [email protected]