Text Generation
Transformers
Safetensors
Vietnamese
qwen2
text-generation-inference
unsloth
legal
vietnamese
law
chat
qwen2.5
conversational
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("jajajou/qwen2.5-7b-instruct-vn-law-tax")
model = AutoModelForCausalLM.from_pretrained("jajajou/qwen2.5-7b-instruct-vn-law-tax")
messages = [
{"role": "user", "content": "Who are you?"},
]
inputs = tokenizer.apply_chat_template(
messages,
add_generation_prompt=True,
tokenize=True,
return_dict=True,
return_tensors="pt",
).to(model.device)
outputs = model.generate(**inputs, max_new_tokens=40)
print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:]))Quick Links
Vietnamese Legal Assistant - Qwen2.5 7B
Đây là model trợ lý pháp lý tiếng Việt được fine-tune từ Qwen2.5-7B-Instruct.
Mô tả
Model này được huấn luyện để:
- Trả lời các câu hỏi pháp lý bằng tiếng Việt
- Đưa ra lời khuyên dựa trên luật pháp Việt Nam
- Hỗ trợ hiểu biết về các quy định pháp luật
Lưu ý
- Model này chỉ mang tính chất tham khảo
- Không thay thế cho lời khuyên của luật sư chuyên nghiệp
- Luôn tham khảo ý kiến chuyên gia khi cần
Uploaded finetuned model
- Developed by: jajajou
- License: apache-2.0
- Finetuned from model : unsloth/qwen2.5-7b-instruct-unsloth-bnb-4bit
This qwen2 model was trained 2x faster with Unsloth and Huggingface's TRL library.
- Downloads last month
- 3

# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="jajajou/qwen2.5-7b-instruct-vn-law-tax") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)