Instructions to use grapevine-AI/plamo-2-translate-gguf with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use grapevine-AI/plamo-2-translate-gguf with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="grapevine-AI/plamo-2-translate-gguf", filename="Plamo-2-Translate-BF16.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use grapevine-AI/plamo-2-translate-gguf with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf grapevine-AI/plamo-2-translate-gguf:Q4_K_M # Run inference directly in the terminal: llama cli -hf grapevine-AI/plamo-2-translate-gguf:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf grapevine-AI/plamo-2-translate-gguf:Q4_K_M # Run inference directly in the terminal: llama cli -hf grapevine-AI/plamo-2-translate-gguf:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf grapevine-AI/plamo-2-translate-gguf:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf grapevine-AI/plamo-2-translate-gguf:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf grapevine-AI/plamo-2-translate-gguf:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf grapevine-AI/plamo-2-translate-gguf:Q4_K_M
Use Docker
docker model run hf.co/grapevine-AI/plamo-2-translate-gguf:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use grapevine-AI/plamo-2-translate-gguf with Ollama:
ollama run hf.co/grapevine-AI/plamo-2-translate-gguf:Q4_K_M
- Unsloth Studio
How to use grapevine-AI/plamo-2-translate-gguf with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for grapevine-AI/plamo-2-translate-gguf to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for grapevine-AI/plamo-2-translate-gguf to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for grapevine-AI/plamo-2-translate-gguf to start chatting
- Atomic Chat new
- Docker Model Runner
How to use grapevine-AI/plamo-2-translate-gguf with Docker Model Runner:
docker model run hf.co/grapevine-AI/plamo-2-translate-gguf:Q4_K_M
- Lemonade
How to use grapevine-AI/plamo-2-translate-gguf with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull grapevine-AI/plamo-2-translate-gguf:Q4_K_M
Run and chat with the model
lemonade run user.plamo-2-translate-gguf-Q4_K_M
List all available models
lemonade list
caution!
このモデルのチャットテンプレートは2025年7月現在のllama.cppに登録されているどのテンプレートとも異なります。
よって、--jinjaオプションによるカスタムテンプレート読み込み機能の使用が必須となります。
補足
なお、llama.cppはplamo2アーキテクチャのモデルにいかなる形でもチャットテンプレートを自動的に登録することはありませんが(参考・https://github.com/ggml-org/llama.cpp/pull/14718)利便性向上のため手動にてplamo-2-translateの翻訳用チャットテンプレートを登録しております。
ちなみに、チャットテンプレートの登録方法についてですが、gguf_new_metadata.pyの--chat-template-fileオプションを利用するのがベストプラクティスのようです。
What is this?
Preferred Networksによって開発された翻訳向け特化型大規模言語モデルplamo-2-translateを日本語imatrixで量子化したものです。
llama.cpp-b5999によるPLaMo2アーキテクチャの修正コミットを反映しています。
また、一部のアーキテクチャのモデルでのimatrix計算時に「collect_imatrix: inconsistent size for blk.0.shortconv.in_proj.weight」といった警告が出現してしまいPPLが正しく計算できない問題がllama.cppには存在しており、
PLaMo2を対象とする修正は2025年8月6日現在も行われていないようです。しかしこの問題についても「-b 512」オプションによる応急処置によって対応しております(詳細)
なお、商用利用には制限がありますのでご注意ください。
imatrix dataset
日本語能力を重視し、日本語が多量に含まれるTFMC/imatrix-dataset-for-japanese-llmデータセットを使用しました。
Chat template
<|plamo:op|>dataset
translation
<|plamo:op|>input lang=English
Write the text to be translated here.
<|plamo:op|>output lang=Japanese
Environment
Windows版llama.cpp-b5999を使用して量子化作業を実施しました
License
Developer
Preferred Networks
Credit
Built with PLaMo
- Downloads last month
- 195