Chat Vector: A Simple Approach to Equip LLMs With New Language Chat Capabilities
Paper • 2310.04799 • Published
How to use jovyan/Swallow-MS-7b-v0.1-ChatVector with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-generation", model="jovyan/Swallow-MS-7b-v0.1-ChatVector") # Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("jovyan/Swallow-MS-7b-v0.1-ChatVector")
model = AutoModelForCausalLM.from_pretrained("jovyan/Swallow-MS-7b-v0.1-ChatVector")How to use jovyan/Swallow-MS-7b-v0.1-ChatVector with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "jovyan/Swallow-MS-7b-v0.1-ChatVector"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "jovyan/Swallow-MS-7b-v0.1-ChatVector",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'docker model run hf.co/jovyan/Swallow-MS-7b-v0.1-ChatVector
How to use jovyan/Swallow-MS-7b-v0.1-ChatVector with SGLang:
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
--model-path "jovyan/Swallow-MS-7b-v0.1-ChatVector" \
--host 0.0.0.0 \
--port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "jovyan/Swallow-MS-7b-v0.1-ChatVector",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'docker run --gpus all \
--shm-size 32g \
-p 30000:30000 \
-v ~/.cache/huggingface:/root/.cache/huggingface \
--env "HF_TOKEN=<secret>" \
--ipc=host \
lmsysorg/sglang:latest \
python3 -m sglang.launch_server \
--model-path "jovyan/Swallow-MS-7b-v0.1-ChatVector" \
--host 0.0.0.0 \
--port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "jovyan/Swallow-MS-7b-v0.1-ChatVector",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'How to use jovyan/Swallow-MS-7b-v0.1-ChatVector with Docker Model Runner:
docker model run hf.co/jovyan/Swallow-MS-7b-v0.1-ChatVector
Japanese "instruction tuned" model made by the technique of Chat Vector
The weights of this model are obtained not by any instruction tuning but by the following arithmetic:
Swallow-MS-7b-v0.1 + Mistral-7B-Instruct-v0.2 - Mistral-7B-v0.1
Chat Vectorの手法を使って、学習済み重みの足し引きのみでSwallow-MS-7b-v0.1モデルにチャット形式の対話能力を与えたモデルです。
詳細はこちらの日本語記事で解説しています。
The promot format should be the same as Mistral-7B-Instruct-v0.2.
E.g.
text = "<s>[INST] What is your favourite condiment? [/INST]"
"Well, I'm quite partial to a good squeeze of fresh lemon juice. It adds just the right amount of zesty flavour to whatever I'm cooking up in the kitchen!</s> "
"[INST] Do you have mayonnaise recipes? [/INST]"
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
model_name = "jovyan/Swallow-MS-7b-v0.1-ChatVector"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(
model_name,
torch_dtype=torch.bfloat16,
device_map="auto",
)
prompt = "<s>[INST] 東京工業大学のキャンパスの特色を元気よく説明してください。 [/INST]"
input_ids = tokenizer.encode(
prompt,
add_special_tokens=False,
return_tensors="pt"
)
tokens = model.generate(
input_ids.to(device=model.device),
max_new_tokens=128,
temperature=0.99,
top_p=0.95,
do_sample=True,
)
out = tokenizer.decode(tokens[0], skip_special_tokens=True)
print(out)