Spaces:
Runtime error
Runtime error
Commit
Β·
631e32b
1
Parent(s):
eba1212
Update app.py
Browse files
app.py
CHANGED
@@ -1,25 +1,23 @@
|
|
1 |
-
|
2 |
-
from
|
3 |
-
from
|
4 |
-
from
|
5 |
-
from langchain.llms import OpenAI
|
6 |
-
import os
|
7 |
|
8 |
-
|
9 |
-
|
|
|
|
|
10 |
|
11 |
-
|
12 |
-
|
13 |
|
14 |
-
|
|
|
15 |
|
16 |
-
|
|
|
17 |
|
18 |
-
|
19 |
-
|
20 |
-
def make_inference(query):
|
21 |
-
docs = docsearch.get_relevant_documents(query)
|
22 |
-
return(chain.run(input_documents=docs, question=query))
|
23 |
|
24 |
if __name__ == "__main__":
|
25 |
# make a gradio interface
|
@@ -28,9 +26,10 @@ if __name__ == "__main__":
|
|
28 |
gr.Interface(
|
29 |
make_inference,
|
30 |
[
|
31 |
-
gr.inputs.Textbox(lines=
|
|
|
32 |
],
|
33 |
-
gr.outputs.Textbox(label="
|
34 |
-
title="π£οΈ
|
35 |
-
description="π£οΈ
|
36 |
).launch()
|
|
|
1 |
+
import torch
|
2 |
+
from peft import PeftModel, PeftConfig
|
3 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
4 |
+
from IPython.display import display, Markdown
|
|
|
|
|
5 |
|
6 |
+
peft_model_id = f"adamtappis/marketing_emails_model"
|
7 |
+
config = PeftConfig.from_pretrained(peft_model_id)
|
8 |
+
model = AutoModelForCausalLM.from_pretrained(config.base_model_name_or_path, return_dict=True, load_in_8bit=False)
|
9 |
+
tokenizer = AutoTokenizer.from_pretrained(config.base_model_name_or_path)
|
10 |
|
11 |
+
# Load the Lora model
|
12 |
+
model = PeftModel.from_pretrained(model, peft_model_id)
|
13 |
|
14 |
+
def make_inference(product, description):
|
15 |
+
batch = tokenizer(f"### INSTRUCTION\nBelow is a product and description, please write a marketing email for this product.\n\n### Product:\n{product}\n### Description:\n{description}\n\n### Marketing Email:\n", return_tensors='pt')
|
16 |
|
17 |
+
with torch.cuda.amp.autocast():
|
18 |
+
output_tokens = model.generate(**batch, max_new_tokens=200)
|
19 |
|
20 |
+
display(Markdown((tokenizer.decode(output_tokens[0], skip_special_tokens=True))))
|
|
|
|
|
|
|
|
|
21 |
|
22 |
if __name__ == "__main__":
|
23 |
# make a gradio interface
|
|
|
26 |
gr.Interface(
|
27 |
make_inference,
|
28 |
[
|
29 |
+
gr.inputs.Textbox(lines=1, label="Product Name"),
|
30 |
+
gr.inputs.Textbox(lines=1, label="Product Description"),
|
31 |
],
|
32 |
+
gr.outputs.Textbox(label="Email"),
|
33 |
+
title="π£οΈMarketing Email Generatorπ",
|
34 |
+
description="π£οΈMarketing Email Generatorπ is a tool that allows you to generate marketing emails for different products",
|
35 |
).launch()
|