How to use from
llama.cpp
Install from brew
brew install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama-server -hf QuantFactory/Mistral-Nemo-Japanese-Instruct-2408-GGUF:
# Run inference directly in the terminal:
llama-cli -hf QuantFactory/Mistral-Nemo-Japanese-Instruct-2408-GGUF:
Install from WinGet (Windows)
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama-server -hf QuantFactory/Mistral-Nemo-Japanese-Instruct-2408-GGUF:
# Run inference directly in the terminal:
llama-cli -hf QuantFactory/Mistral-Nemo-Japanese-Instruct-2408-GGUF:
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 QuantFactory/Mistral-Nemo-Japanese-Instruct-2408-GGUF:
# Run inference directly in the terminal:
./llama-cli -hf QuantFactory/Mistral-Nemo-Japanese-Instruct-2408-GGUF:
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 QuantFactory/Mistral-Nemo-Japanese-Instruct-2408-GGUF:
# Run inference directly in the terminal:
./build/bin/llama-cli -hf QuantFactory/Mistral-Nemo-Japanese-Instruct-2408-GGUF:
Use Docker
docker model run hf.co/QuantFactory/Mistral-Nemo-Japanese-Instruct-2408-GGUF:
Quick Links

QuantFactory/Mistral-Nemo-Japanese-Instruct-2408-GGUF

This is quantized version of cyberagent/Mistral-Nemo-Japanese-Instruct-2408 created using llama.cpp

Original Model Card

Mistral-Nemo-Japanese-Instruct-2408

Model Description

This is a Japanese continually pre-trained model based on mistralai/Mistral-Nemo-Instruct-2407.

Usage

Make sure to update your transformers installation via pip install --upgrade transformers.

from transformers import AutoModelForCausalLM, AutoTokenizer, TextStreamer

model = AutoModelForCausalLM.from_pretrained("cyberagent/Mistral-Nemo-Japanese-Instruct-2408", device_map="auto", torch_dtype="auto")
tokenizer = AutoTokenizer.from_pretrained("cyberagent/Mistral-Nemo-Japanese-Instruct-2408")
streamer = TextStreamer(tokenizer, skip_prompt=True, skip_special_tokens=True)

messages = [
    {"role": "system", "content": "あなたは親切なAIアシスタントです。"},
    {"role": "user", "content": "AIによって私たちの暮らしはどのように変わりますか?"}
]

input_ids = tokenizer.apply_chat_template(messages, add_generation_prompt=True, return_tensors="pt").to(model.device)
output_ids = model.generate(input_ids,
                            max_new_tokens=1024,
                            temperature=0.5,
                            streamer=streamer)

Prompt Format

ChatML Format

<s><|im_start|>system
あなたは親切なAIアシスタントです。<|im_end|>
<|im_start|>user
AIによって私たちの暮らしはどのように変わりますか?<|im_end|>
<|im_start|>assistant

License

Apache-2.0

Author

Ryosuke Ishigami

How to cite

@misc{cyberagent-mistral-nemo-japanese-instruct-2408,
      title={Mistral-Nemo-Japanese-Instruct-2408},
      url={https://huggingface.co/cyberagent/Mistral-Nemo-Japanese-Instruct-2408},
      author={Ryosuke Ishigami},
      year={2024},
}
Downloads last month
408
GGUF
Model size
12B params
Architecture
llama
Hardware compatibility
Log In to add your hardware

2-bit

3-bit

4-bit

5-bit

6-bit

8-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for QuantFactory/Mistral-Nemo-Japanese-Instruct-2408-GGUF

Quantized
(76)
this model