File size: 4,647 Bytes
b58b37b |
1 2 3 4 5 6 7 8 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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 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 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 |
from fastapi import FastAPI, HTTPException
from pydantic import BaseModel
from typing import List, Dict
from transformers import pipeline
from itertools import groupby
# Initialize the FastAPI app
app = FastAPI()
# Initialize the NER pipeline
ner_pipeline = pipeline(
"ner",
model="dbmdz/bert-large-cased-finetuned-conll03-english",
grouped_entities=True
)
# Initialize the QA pipeline
qa_pipeline = pipeline(
"question-answering",
model="deepset/roberta-base-squad2"
)
# Allowed domains for filtering
allowed_domains = [
"clothing",
"fashion",
"shopping",
"accessories",
"sustainability",
"shoes",
"hats",
"shirts",
"dresses",
"pants",
"jeans",
"skirts",
"jackets",
"coats",
"t-shirts",
"sweaters",
"hoodies",
"activewear",
"formal wear",
"casual wear",
"sportswear",
"outerwear",
"swimwear",
"underwear",
"lingerie",
"socks",
"scarves",
"gloves",
"belts",
"ties",
"caps",
"beanies",
"boots",
"sandals",
"heels",
"sneakers",
"materials",
"cotton",
"polyester",
"wool",
"silk",
"leather",
"denim",
"linen",
"athleisure",
"ethnic wear",
"fashion trends",
"custom clothing",
"tailoring",
"sustainable materials",
"recycled clothing",
"fashion brands",
"streetwear"
]
# Pydantic models for structured response
class Entity(BaseModel):
word: str
entity_group: str
score: float
class NERResponse(BaseModel):
entities: List[Entity]
class QAResponse(BaseModel):
question: str
answer: str
score: float
class CombinedRequest(BaseModel):
text: str # The input text prompt
class CombinedResponse(BaseModel):
ner: NERResponse # NER output
qa: QAResponse # QA output
# Function to check if the input text belongs to allowed domains
def is_text_in_allowed_domain(text: str, domains: List[str]) -> bool:
for domain in domains:
if domain in text.lower():
return True
return False
# Combined endpoint for NER and QA with domain filtering
@app.post("/process/", response_model=CombinedResponse)
async def process_request(request: CombinedRequest):
"""
Process the input text for both NER and QA, returning both responses,
only if the text matches the allowed domains.
"""
input_text = request.text
# Check if the input text belongs to the allowed domains
if not is_text_in_allowed_domain(input_text, allowed_domains):
raise HTTPException(
status_code=400,
detail=(
"The input text does not match the allowed domains. "
"Please provide a query related to clothing, fashion, or accessories."
)
)
# Perform Named Entity Recognition (NER)
ner_entities = ner_pipeline(input_text)
# Process the NER entities into the required format
formatted_entities = [
{
"word": entity["word"],
"entity_group": entity["entity_group"],
"score": float(entity["score"]), # Convert numpy.float32 to Python float
}
for entity in ner_entities
]
ner_response = {"entities": formatted_entities}
# Perform Question Answering (QA)
qa_result = qa_pipeline(question=input_text, context=input_text)
qa_result["score"] = float(qa_result["score"]) # Convert numpy.float32 to Python float
qa_response = {
"question": input_text,
"answer": qa_result["answer"],
"score": qa_result["score"]
}
# Return both NER and QA responses
return {"ner": ner_response, "qa": qa_response}
# Root endpoint
@app.get("/")
async def root():
"""
Root endpoint to confirm the server is running.
"""
return {"message": "Welcome to the filtered NER and QA API!"}
# JSon response
# {
# "entities": [
# {
# "word": "Nike",
# "entity_group": "ORG",
# "score": 0.995
# },
# {
# "word": "running shoes",
# "entity_group": "PRODUCT",
# "score": 0.987
# },
# {
# "word": "outdoor activities",
# "entity_group": "ACTIVITY",
# "score": 0.960
# }
# ]
# }
# {
# "question": "Can you suggest comfortable Nike running shoes for outdoor activities?",
# "answer": "Nike Air Zoom Pegasus or React Infinity Run are great options for outdoor running.",
# "score": 0.978
# }
|