Spaces:
Sleeping
Sleeping
File size: 7,749 Bytes
4627ba8 | 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 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 | """
FastAPI inference server for sentiment analysis.
Supports dynamic switching between three fine-tuned LoRA models.
Run: python server.py
Listens on http://127.0.0.1:8765
"""
import re
import os
import gc
import asyncio
from concurrent.futures import ThreadPoolExecutor
os.environ.setdefault("HF_HOME", "/tmp/hf_cache")
os.environ.setdefault("TRANSFORMERS_CACHE", "/tmp/hf_cache/hub")
import torch
from fastapi import FastAPI, HTTPException
from fastapi.middleware.cors import CORSMiddleware
from pydantic import BaseModel
from transformers import AutoTokenizer, AutoModelForCausalLM
from peft import PeftModel
# ββ Model registry ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
MODELS = {
"qwen3-0.6B": {
"label": "Qwen3-0.6B (Fine-tuned)",
"base": "Qwen/Qwen3-0.6B",
"lora": "alanwang2001/qwen3-0.6B-sentiment-lora",
},
"qwen3-1.7B": {
"label": "Qwen3-1.7B (Fine-tuned)",
"base": "Qwen/Qwen3-1.7B",
"lora": "alanwang2001/qwen3-1.7B-sentiment-lora",
},
}
DEFAULT_MODEL = "qwen3-0.6B"
# ββ System prompt βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
SYSTEM_PROMPT = (
"You are a sentiment analysis assistant. "
"Classify the sentiment of the given movie review into one of three categories:\n"
"- positive: the reviewer expresses a favorable opinion of the movie.\n"
"- negative: the reviewer expresses an unfavorable opinion of the movie.\n"
"- neutral: the reviewer expresses a mixed or balanced opinion with no clear positive or negative leaning.\n"
"First explain your reasoning, then put your final answer in \\boxed{}, "
"for example \\boxed{positive}."
)
VALID_LABELS = {"positive", "negative", "neutral"}
# ββ Model state βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
device = "cuda" if torch.cuda.is_available() else "cpu"
tokenizer = None
model = None
current_model_name = None
model_status = "loading" # loading | ready | switching | error
_executor = ThreadPoolExecutor(max_workers=1)
def _do_load(name: str):
"""Blocking model load β runs in thread executor."""
global tokenizer, model, current_model_name, model_status
cfg = MODELS[name]
print(f"\n[load] {name} base={cfg['base']} lora={cfg['lora']}")
# Unload existing model
if model is not None:
model = None
tokenizer = None
gc.collect()
if device == "cuda":
torch.cuda.empty_cache()
tokenizer = AutoTokenizer.from_pretrained(
cfg["base"],
trust_remote_code=True,
)
base = AutoModelForCausalLM.from_pretrained(
cfg["base"],
dtype=torch.float16 if device == "cuda" else torch.float32,
device_map={"": 0} if device == "cuda" else None,
trust_remote_code=True,
)
model = PeftModel.from_pretrained(base, cfg["lora"])
model.eval()
if device == "cpu":
model.to(device)
current_model_name = name
model_status = "ready"
print(f"[load] done β {name} ready on {device}")
# ββ FastAPI βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
app = FastAPI(title="Sentiment API")
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_methods=["GET", "POST", "OPTIONS"],
allow_headers=["*"],
)
from starlette.middleware.base import BaseHTTPMiddleware
from starlette.requests import Request
class PrivateNetworkMiddleware(BaseHTTPMiddleware):
async def dispatch(self, request: Request, call_next):
response = await call_next(request)
response.headers["Access-Control-Allow-Private-Network"] = "true"
return response
app.add_middleware(PrivateNetworkMiddleware)
# ββ Startup βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.on_event("startup")
async def startup():
loop = asyncio.get_event_loop()
await loop.run_in_executor(_executor, _do_load, DEFAULT_MODEL)
# ββ Endpoints βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.get("/health")
def health():
return {"status": model_status, "device": device, "model": current_model_name}
@app.get("/models")
def list_models():
return [
{
"id": mid,
"label": cfg["label"],
"current": mid == current_model_name,
}
for mid, cfg in MODELS.items()
]
class SwitchRequest(BaseModel):
model: str
@app.post("/model")
async def switch_model(req: SwitchRequest):
global model_status
if req.model not in MODELS:
raise HTTPException(status_code=404, detail=f"Unknown model: {req.model}")
if req.model == current_model_name and model_status == "ready":
return {"model": current_model_name, "status": "ready"}
model_status = "switching"
loop = asyncio.get_event_loop()
try:
await loop.run_in_executor(_executor, _do_load, req.model)
except Exception as e:
model_status = "error"
raise HTTPException(status_code=500, detail=str(e))
return {"model": current_model_name, "status": "ready"}
# ββ Inference βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def build_prompt(text: str) -> str:
messages = [
{"role": "system", "content": SYSTEM_PROMPT},
{"role": "user", "content": f"Classify the sentiment of this movie review:\n\n{text[:512]}"},
]
return tokenizer.apply_chat_template(
messages,
tokenize=False,
add_generation_prompt=True,
enable_thinking=False,
)
def parse_label(text: str) -> str:
m = re.search(r"\\boxed\{(\w+)\}", text)
if m and m.group(1).lower() in VALID_LABELS:
return m.group(1).lower()
for label in VALID_LABELS:
if label in text.lower():
return label
return "neutral"
class ReviewRequest(BaseModel):
text: str
@app.post("/analyze")
def analyze(req: ReviewRequest):
if model_status != "ready":
raise HTTPException(status_code=503, detail=f"Model is {model_status}")
prompt = build_prompt(req.text)
inputs = tokenizer(prompt, return_tensors="pt").to(device)
with torch.no_grad():
output_ids = model.generate(
**inputs,
max_new_tokens=150,
do_sample=False,
pad_token_id=tokenizer.eos_token_id,
)
new_tokens = output_ids[0][inputs.input_ids.shape[1]:]
generated = tokenizer.decode(new_tokens, skip_special_tokens=True).strip()
sentiment = parse_label(generated)
reasoning = re.sub(r"\\boxed\{\w+\}", "", generated).strip()
return {"sentiment": sentiment, "reasoning": reasoning}
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=7860)
|