70B-parameter large language models in Japanese medical question-answering
Paper
•
2406.14882
•
Published
⚠️⚠️⚠️ Only for research purpose. Do not use it for medical purpose. ⚠️⚠️⚠️
東工大Swallowをベースモデルとし, 医療Q&AデータセットでInstruction Tuningを施した医療ドメインの日本語LLMです.
チューニングには独自で用意した米国医師国家試験(USMLE)を和訳したQ&Aデータセットを用いました.
MedSwallow is a Japanese medical LLM for medical question-answering.
MedSwallow is based on Swallow-70B and has passed instruction tuning with USMLE dataset translated in Japanese by our own.
The following bitsandbytes quantization config was used during training:
ライセンスは非商用ライセンスです.
Non-commercial.
model_name = "tokyotech-llm/Swallow-70b-instruct-hf"
peft_model= "AIgroup-CVM-utokyohospital/MedSwallow-70b"
tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True)
bnb_config = BitsAndBytesConfig(
load_in_4bit=True,
bnb_4bit_quant_type="nf4",
bnb_4bit_compute_dtype=torch.float16,
)
model = AutoModelForCausalLM.from_pretrained(
model_name,
load_in_8bit=False,
torch_dtype=torch.float16,
device_map=device,
model = PeftModel.from_pretrained(
model,
peft_model,
torch_dtype=torch.float16,
device_map=device,
)
See also Japanese Medical Language Model Evaluation Harness.
@misc{sukeda202470bparameterlargelanguagemodels,
title={70B-parameter large language models in Japanese medical question-answering},
author={Issey Sukeda and Risa Kishikawa and Satoshi Kodera},
year={2024},
eprint={2406.14882},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2406.14882},
}