bhavyaaiplanet commited on
Commit
1ff7374
1 Parent(s): 3f20f63

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -46,7 +46,7 @@ from transformers import AutoTokenizer , AutoModelForCausalLM
46
 
47
  quant_path = "aiplanet/effi-7b-awq"
48
 
49
- model = AutoModelForCausalLM.from_pretrained(quant_path).to(0)
50
  tokenizer = AutoTokenizer.from_pretrained(quant_path, trust_remote_code=True , safetensors=True , fuse_layers=True)
51
 
52
 
 
46
 
47
  quant_path = "aiplanet/effi-7b-awq"
48
 
49
+ model = AutoModelForCausalLM.from_pretrained(quant_path , device_map='cuda')
50
  tokenizer = AutoTokenizer.from_pretrained(quant_path, trust_remote_code=True , safetensors=True , fuse_layers=True)
51
 
52