JustinLin610 commited on
Commit
e883202
1 Parent(s): 3eebb4d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -47,10 +47,10 @@ from transformers import AutoModelForCausalLM, AutoTokenizer
47
  device = "cuda" # the device to load the model onto
48
 
49
  model = AutoModelForCausalLM.from_pretrained(
50
- "Qwen2/Qwen2-beta-72B-Chat",
51
  device_map="auto"
52
  )
53
- tokenizer = AutoTokenizer.from_pretrained("Qwen2/Qwen2-beta-72B-Chat")
54
 
55
  prompt = "Give me a short introduction to large language model."
56
  messages = [
 
47
  device = "cuda" # the device to load the model onto
48
 
49
  model = AutoModelForCausalLM.from_pretrained(
50
+ "Qwen/Qwen2-beta-72B-Chat",
51
  device_map="auto"
52
  )
53
+ tokenizer = AutoTokenizer.from_pretrained("Qwen/Qwen2-beta-72B-Chat")
54
 
55
  prompt = "Give me a short introduction to large language model."
56
  messages = [