Update README.md
Browse files
README.md
CHANGED
|
@@ -91,7 +91,7 @@ device = torch.device("cuda")
|
|
| 91 |
|
| 92 |
query="帮我写一份去西安的旅游计划"
|
| 93 |
model = LlamaForCausalLM.from_pretrained('IDEA-CCNL/Ziya-LLaMA-13B-v1', torch_dtype=torch.float16, device_map="auto")
|
| 94 |
-
tokenizer = AutoTokenizer.from_pretrained('IDEA-CCNL/Ziya-LLaMA-13B-v1')
|
| 95 |
inputs = '<human>:' + query.strip() + '\n<bot>:'
|
| 96 |
|
| 97 |
input_ids = tokenizer(inputs, return_tensors="pt").input_ids.to(device)
|
|
|
|
| 91 |
|
| 92 |
query="帮我写一份去西安的旅游计划"
|
| 93 |
model = LlamaForCausalLM.from_pretrained('IDEA-CCNL/Ziya-LLaMA-13B-v1', torch_dtype=torch.float16, device_map="auto")
|
| 94 |
+
tokenizer = AutoTokenizer.from_pretrained('IDEA-CCNL/Ziya-LLaMA-13B-v1', use_fast=False)
|
| 95 |
inputs = '<human>:' + query.strip() + '\n<bot>:'
|
| 96 |
|
| 97 |
input_ids = tokenizer(inputs, return_tensors="pt").input_ids.to(device)
|