This model is based on Meta AI's Llama 3.2 with fine tuning to improve performance on Japanese tasks. Based on the base Llama-3.2-3B-Instruct, performance was improved on the Japanese-English dataset.
このモデルは、Meta AI の Llama 3.2 をベースに、日本語タスクでの性能を向上させるためにファインチューニングを行ったものです。
ベースとなるLlama-3.2-3B-Instructをもとに、日英のデータセットで性能向上を行いました。
法的通知 / Legal Notice
This model is subject to the Llama 3.2 Community License Agreement. For detailed information, please refer to the official Llama license page: Llama 3.2 License
このモデルは Llama 3.2 Community License Agreement に従います。詳細については、Llama の公式ライセンスページをご参照ください。
使用方法 / Usage
python
1import torch
2from transformers import pipeline
34model_id ="AXCXEPT/EZO-Llama-3.2-3B-Instruct-dpoE"5pipe = pipeline(6"text-generation",7 model=model_id,8 torch_dtype=torch.bfloat16,9 device_map="auto",10)11messages =[12{"role":"system","content":"You are a pirate chatbot who always responds in pirate speak!"},13{"role":"user","content":"Who are you?"},14]15outputs = pipe(16 messages,17 max_new_tokens=256,18)19print(outputs[0]["generated_text"][-1])
ベンチマーク結果 / Benchmark Results
image/png
[Disclaimer]
This model is provided for research and development purposes only and should be considered an experimental prototype.
It is not intended for commercial use or deployment in mission-critical environments.
Use of this model is at the user's own risk and its performance and results are not guaranteed.
Axcxept Corporation shall not be liable for any direct, indirect, special, incidental, or consequential damages or any loss whatsoever resulting from the use of this model, regardless of the results obtained.
Users fully understand the risks associated with the use of this model and use it at their own discretion.