updated key
Browse files- llm/inference.py +111 -109
llm/inference.py
CHANGED
@@ -1,110 +1,112 @@
|
|
1 |
-
from huggingface_hub import InferenceClient
|
2 |
-
import nltk
|
3 |
-
import re
|
4 |
-
import requests
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
nltk.download('
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
if
|
48 |
-
result["
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
print(
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
print(
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
|
|
|
|
110 |
# get_name(url, object)
|
|
|
1 |
+
from huggingface_hub import InferenceClient
|
2 |
+
import nltk
|
3 |
+
import re
|
4 |
+
import requests
|
5 |
+
import os
|
6 |
+
|
7 |
+
api_key = os.getenv("HF_KEY")
|
8 |
+
nltk.download('punkt')
|
9 |
+
nltk.download('punkt_tab')
|
10 |
+
nltk.download('averaged_perceptron_tagger')
|
11 |
+
|
12 |
+
|
13 |
+
client = InferenceClient(api_key=api_key)
|
14 |
+
|
15 |
+
|
16 |
+
def extract_product_info(text):
|
17 |
+
# Initialize result dictionary
|
18 |
+
result = {"brand": None, "model": None, "description": None, "price": None}
|
19 |
+
|
20 |
+
# Extract price separately using regex (to avoid confusion with brand name)
|
21 |
+
price_match = re.search(r'\$\s?\d{1,3}(?:,\d{3})*(?:\.\d{2})?', text)
|
22 |
+
if price_match:
|
23 |
+
result["price"] = price_match.group().replace("$", "").replace(",", "").strip()
|
24 |
+
# Remove the price part from the text to prevent it from being included in the brand/model extraction
|
25 |
+
text = text.replace(price_match.group(), "").strip()
|
26 |
+
|
27 |
+
# Tokenize the remaining text and tag parts of speech
|
28 |
+
tokens = nltk.word_tokenize(text)
|
29 |
+
pos_tags = nltk.pos_tag(tokens)
|
30 |
+
|
31 |
+
# Extract brand and model (Proper Nouns + Alphanumeric patterns)
|
32 |
+
brand_parts = []
|
33 |
+
model_parts = []
|
34 |
+
description_parts = []
|
35 |
+
|
36 |
+
# First part: Extract brand and model info
|
37 |
+
for word, tag in pos_tags:
|
38 |
+
if tag == 'NNP' or re.match(r'[A-Za-z0-9-]+', word):
|
39 |
+
if len(brand_parts) == 0: # Assume the first proper noun is the brand
|
40 |
+
brand_parts.append(word)
|
41 |
+
else: # Model number tends to follow the brand
|
42 |
+
model_parts.append(word)
|
43 |
+
else:
|
44 |
+
description_parts.append(word)
|
45 |
+
|
46 |
+
# Assign brand and model to result dictionary
|
47 |
+
if brand_parts:
|
48 |
+
result["brand"] = " ".join(brand_parts)
|
49 |
+
if model_parts:
|
50 |
+
result["model"] = " ".join(model_parts)
|
51 |
+
|
52 |
+
# Combine the remaining parts as description
|
53 |
+
result["description"] = " ".join(description_parts)
|
54 |
+
|
55 |
+
return result
|
56 |
+
|
57 |
+
|
58 |
+
|
59 |
+
def extract_info(text):
|
60 |
+
API_URL = "https://api-inference.huggingface.co/models/google/flan-t5-large"
|
61 |
+
headers = {"Authorization": f"Bearer {api_key}"}
|
62 |
+
payload = {"inputs": f"From the given text, extract brand name, model number, description about it, and its average price in today's market. Give me back a python dictionary with keys as brand_name, model_number, desc, price. The text is {text}.",}
|
63 |
+
response = requests.post(API_URL, headers=headers, json=payload)
|
64 |
+
print('GOOGLEE LLM OUTPUTTTTTTT\n\n',response )
|
65 |
+
output = response.json()
|
66 |
+
print(output)
|
67 |
+
|
68 |
+
|
69 |
+
|
70 |
+
def get_name(url, object):
|
71 |
+
messages = [
|
72 |
+
{
|
73 |
+
"role": "user",
|
74 |
+
"content": [
|
75 |
+
{
|
76 |
+
"type": "text",
|
77 |
+
"text": f"Is this a {object}?. Can you guess what it is and give me the closest brand it resembles to? or a model number? And give me its average price in today's market in USD. In output, give me its normal name, model name, model number and price. separated by commas. No description is needed."
|
78 |
+
},
|
79 |
+
{
|
80 |
+
"type": "image_url",
|
81 |
+
"image_url": {
|
82 |
+
"url": url
|
83 |
+
}
|
84 |
+
}
|
85 |
+
]
|
86 |
+
}
|
87 |
+
]
|
88 |
+
|
89 |
+
completion = client.chat.completions.create(
|
90 |
+
model="meta-llama/Llama-3.2-11B-Vision-Instruct",
|
91 |
+
messages=messages,
|
92 |
+
max_tokens=500
|
93 |
+
)
|
94 |
+
|
95 |
+
|
96 |
+
print(f'\n\nNow output of LLM:\n')
|
97 |
+
llm_result = completion.choices[0].message['content']
|
98 |
+
print(llm_result)
|
99 |
+
print(f'\n\nThat is the output')
|
100 |
+
|
101 |
+
result = extract_product_info(llm_result)
|
102 |
+
print(f'\n\nResult brand and price:{result}')
|
103 |
+
|
104 |
+
# result2 = extract_info(llm_result)
|
105 |
+
# print(f'\n\nFrom Google llm:{result2}')
|
106 |
+
|
107 |
+
return result
|
108 |
+
|
109 |
+
# url = "https://i.ibb.co/mNYvqDL/crop_39.jpg"
|
110 |
+
# object="fridge"
|
111 |
+
|
112 |
# get_name(url, object)
|