rootxhacker commited on
Commit
9d3ed05
·
verified ·
1 Parent(s): 192a7b2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -7,8 +7,7 @@ import spaces
7
  # Load the model and tokenizer
8
  peft_model_id = "rootxhacker/CodeAstra-7B"
9
  config = PeftConfig.from_pretrained(peft_model_id)
10
- model = AutoModelForCausalLM.from_pretrained(config.base_model_name_or_path, return_dict=True, load_in_4bit=True, device_map='auto')
11
- model.to('cuda')
12
  tokenizer = AutoTokenizer.from_pretrained(config.base_model_name_or_path)
13
 
14
  # Load the Lora model
 
7
  # Load the model and tokenizer
8
  peft_model_id = "rootxhacker/CodeAstra-7B"
9
  config = PeftConfig.from_pretrained(peft_model_id)
10
+ model = AutoModelForCausalLM.from_pretrained(config.base_model_name_or_path, return_dict=True, load_in_4bit=True,device_map={"":0})
 
11
  tokenizer = AutoTokenizer.from_pretrained(config.base_model_name_or_path)
12
 
13
  # Load the Lora model