Spaces:
Sleeping
Sleeping
File size: 6,979 Bytes
95c3887 | 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 234 235 236 237 | from __future__ import annotations
import os
import tempfile
from dataclasses import dataclass
from pathlib import Path
from typing import Any
import torch
from fastapi import FastAPI, File, Form, HTTPException, UploadFile
from fastapi.middleware.cors import CORSMiddleware
from fastapi.responses import FileResponse
from fastapi.staticfiles import StaticFiles
from faster_whisper import WhisperModel
from pydantic import BaseModel
from transformers import AutoModelForSeq2SeqLM, AutoTokenizer
ROOT = Path(__file__).resolve().parent
STATIC_DIR = ROOT / "static"
DEFAULT_WHISPER_MODEL = os.getenv("WHISPERMATH_WHISPER_MODEL", "small.en")
DEFAULT_WHISPER_DEVICE = os.getenv("WHISPERMATH_WHISPER_DEVICE", "cpu")
DEFAULT_WHISPER_COMPUTE_TYPE = os.getenv("WHISPERMATH_WHISPER_COMPUTE_TYPE", "int8")
DEFAULT_DECODER_MODEL = os.getenv(
"WHISPERMATH_DECODER_MODEL",
"vibhuiitj/byt5-base-whispermath-a100-checkpoint-10724",
)
def select_decoder_device(device_name: str | None = None) -> torch.device:
if device_name and device_name != "auto":
return torch.device(device_name)
if torch.cuda.is_available():
return torch.device("cuda")
if torch.backends.mps.is_available():
return torch.device("mps")
return torch.device("cpu")
@dataclass
class DemoModels:
whisper: WhisperModel
tokenizer: Any
decoder: Any
decoder_device: torch.device
class DecodeRequest(BaseModel):
text: str
num_beams: int = 4
max_new_tokens: int = 256
def load_models() -> DemoModels:
decoder_device = select_decoder_device(os.getenv("WHISPERMATH_DECODER_DEVICE", "auto"))
print(
f"Loading Whisper {DEFAULT_WHISPER_MODEL} "
f"({DEFAULT_WHISPER_DEVICE}, {DEFAULT_WHISPER_COMPUTE_TYPE})...",
flush=True,
)
whisper = WhisperModel(
DEFAULT_WHISPER_MODEL,
device=DEFAULT_WHISPER_DEVICE,
compute_type=DEFAULT_WHISPER_COMPUTE_TYPE,
)
print(f"Loading decoder {DEFAULT_DECODER_MODEL} on {decoder_device}...", flush=True)
tokenizer = AutoTokenizer.from_pretrained(DEFAULT_DECODER_MODEL)
decoder = AutoModelForSeq2SeqLM.from_pretrained(
DEFAULT_DECODER_MODEL,
low_cpu_mem_usage=True,
).to(decoder_device)
decoder.eval()
print("WhisperMath web demo is ready.", flush=True)
return DemoModels(
whisper=whisper,
tokenizer=tokenizer,
decoder=decoder,
decoder_device=decoder_device,
)
models: DemoModels | None = None
app = FastAPI(title="WhisperMath Web Demo")
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=False,
allow_methods=["*"],
allow_headers=["*"],
)
app.mount("/static", StaticFiles(directory=STATIC_DIR), name="static")
@app.on_event("startup")
def startup() -> None:
global models
models = load_models()
@app.get("/")
def index() -> FileResponse:
return FileResponse(STATIC_DIR / "index.html")
@app.get("/api/health")
def health() -> dict[str, str]:
decoder_device = str(models.decoder_device) if models else "not_loaded"
return {
"status": "ok" if models else "loading",
"whisper_model": DEFAULT_WHISPER_MODEL,
"decoder_model": DEFAULT_DECODER_MODEL,
"decoder_device": decoder_device,
}
def transcribe_audio(audio_path: Path) -> tuple[str, list[dict[str, float | str]]]:
if models is None:
raise RuntimeError("Models are still loading.")
segments, _info = models.whisper.transcribe(
str(audio_path),
language="en",
beam_size=5,
vad_filter=True,
)
segment_rows = [
{
"start": round(segment.start, 3),
"end": round(segment.end, 3),
"text": segment.text.strip(),
}
for segment in segments
]
transcript = " ".join(row["text"] for row in segment_rows).strip()
return transcript, segment_rows
def decode_math_text(
transcript: str,
max_source_length: int = 512,
max_new_tokens: int = 256,
num_beams: int = 4,
repetition_penalty: float = 1.25,
no_repeat_ngram_size: int = 4,
) -> str:
if models is None:
raise RuntimeError("Models are still loading.")
if not transcript:
return ""
encoded = models.tokenizer(
transcript,
return_tensors="pt",
max_length=max_source_length,
truncation=True,
).to(models.decoder_device)
with torch.no_grad():
output_ids = models.decoder.generate(
**encoded,
max_new_tokens=max_new_tokens,
num_beams=num_beams,
repetition_penalty=repetition_penalty,
no_repeat_ngram_size=no_repeat_ngram_size,
early_stopping=num_beams > 1,
)
return models.tokenizer.decode(output_ids[0], skip_special_tokens=True).strip()
def clamp_generation_args(num_beams: int, max_new_tokens: int) -> tuple[int, int]:
return max(1, min(num_beams, 8)), max(32, min(max_new_tokens, 1024))
@app.post("/api/transcribe")
async def transcribe(
audio: UploadFile = File(...),
num_beams: int = Form(4),
max_new_tokens: int = Form(256),
) -> dict[str, Any]:
if models is None:
raise HTTPException(status_code=503, detail="Models are still loading.")
suffix = Path(audio.filename or "recording.webm").suffix or ".webm"
with tempfile.NamedTemporaryFile(delete=False, suffix=suffix) as handle:
temp_path = Path(handle.name)
handle.write(await audio.read())
try:
transcript, segments = transcribe_audio(temp_path)
safe_num_beams, safe_max_new_tokens = clamp_generation_args(num_beams, max_new_tokens)
math_text = decode_math_text(
transcript,
num_beams=safe_num_beams,
max_new_tokens=safe_max_new_tokens,
)
except Exception as exc: # pragma: no cover - returned to the demo UI.
raise HTTPException(status_code=500, detail=str(exc)) from exc
finally:
temp_path.unlink(missing_ok=True)
return {
"transcript": transcript,
"math_text": math_text,
"segments": segments,
"whisper_model": DEFAULT_WHISPER_MODEL,
"decoder_model": DEFAULT_DECODER_MODEL,
}
@app.post("/api/decode")
def decode(request: DecodeRequest) -> dict[str, Any]:
if models is None:
raise HTTPException(status_code=503, detail="Models are still loading.")
transcript = request.text.strip()
if not transcript:
raise HTTPException(status_code=400, detail="Text is required.")
safe_num_beams, safe_max_new_tokens = clamp_generation_args(
request.num_beams,
request.max_new_tokens,
)
math_text = decode_math_text(
transcript,
num_beams=safe_num_beams,
max_new_tokens=safe_max_new_tokens,
)
return {
"transcript": transcript,
"math_text": math_text,
"decoder_model": DEFAULT_DECODER_MODEL,
}
|