Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -19,7 +19,6 @@ tokenizer = AutoTokenizer.from_pretrained(base_model_name, token=hf_token)
|
|
19 |
base_model = AutoModelForCausalLM.from_pretrained(base_model_name, token=hf_token)
|
20 |
peft_model = PeftModel.from_pretrained(base_model, fine_tuned_model_path, token=hf_token)
|
21 |
|
22 |
-
peft_model.to("cuda")
|
23 |
peft_model.eval()
|
24 |
|
25 |
tinyllama_prompt = """Below is an instruction that describes a task, paired with an input that provides further context. Write a response that appropriately completes the request.
|
|
|
19 |
base_model = AutoModelForCausalLM.from_pretrained(base_model_name, token=hf_token)
|
20 |
peft_model = PeftModel.from_pretrained(base_model, fine_tuned_model_path, token=hf_token)
|
21 |
|
|
|
22 |
peft_model.eval()
|
23 |
|
24 |
tinyllama_prompt = """Below is an instruction that describes a task, paired with an input that provides further context. Write a response that appropriately completes the request.
|