mymusise's picture
Update README.md
f9e5e5d
|
raw
history blame
477 Bytes
metadata
license: apache-2.0
  • Loda LLM
from modeling_chatglm import ChatGLMForConditionalGeneration
import torch


torch.set_default_tensor_type(torch.cuda.HalfTensor)
model = ChatGLMForConditionalGeneration.from_pretrained("THUDM/chatglm-6b", trust_remote_code=True, device_map='auto')
  • Load LoRA
from peft import PeftModel

model = PeftModel.from_pretrained(model, "mymusise/chatGLM-6B-alpaca-lora")
torch.set_default_tensor_type(torch.cuda.FloatTensor)