Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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,
|
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
|