How to use from the
Use from the
Transformers library
# 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)
# 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
Safetensors
Model size
8B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for jajajou/qwen2.5-7b-instruct-vn-law-tax

Merges
1 model