Chris Alexiuk
commited on
Commit
·
6ff350e
1
Parent(s):
b4db850
Update app.py
Browse files
app.py
CHANGED
|
@@ -7,8 +7,7 @@ config = PeftConfig.from_pretrained(peft_model_id)
|
|
| 7 |
model = AutoModelForCausalLM.from_pretrained(
|
| 8 |
config.base_model_name_or_path,
|
| 9 |
return_dict=True,
|
| 10 |
-
device_map="auto"
|
| 11 |
-
load_in_4bit=True,
|
| 12 |
)
|
| 13 |
tokenizer = AutoTokenizer.from_pretrained(config.base_model_name_or_path)
|
| 14 |
|
|
|
|
| 7 |
model = AutoModelForCausalLM.from_pretrained(
|
| 8 |
config.base_model_name_or_path,
|
| 9 |
return_dict=True,
|
| 10 |
+
device_map="auto"
|
|
|
|
| 11 |
)
|
| 12 |
tokenizer = AutoTokenizer.from_pretrained(config.base_model_name_or_path)
|
| 13 |
|