File size: 7,242 Bytes
b1ef1ed | 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 | """
Custom Inference Handler for StutteredSpeechASR Model
Handles audio input and returns transcriptions for stuttered speech.
"""
import torch
import librosa
import numpy as np
import base64
import io
import logging
from typing import Dict, Any
from transformers import AutoModelForSpeechSeq2Seq, AutoProcessor
# Configure logging
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)
class EndpointHandler:
"""
Custom handler for StutteredSpeechASR inference endpoint.
This handler processes audio inputs and returns transcriptions
using the fine-tuned Whisper model for stuttered Mandarin speech.
"""
def __init__(self, path: str = ""):
"""
Initialize the handler by loading the model and processor.
Args:
path: Path to the model directory (provided by Inference Endpoints)
"""
logger.info("Initializing StutteredSpeechASR handler...")
# Determine device and dtype
self.device = "cuda" if torch.cuda.is_available() else "cpu"
self.torch_dtype = torch.float16 if torch.cuda.is_available() else torch.float32
logger.info(f"Using device: {self.device}")
logger.info(f"Using dtype: {self.torch_dtype}")
# Load model and processor
try:
self.model = AutoModelForSpeechSeq2Seq.from_pretrained(
path,
torch_dtype=self.torch_dtype
)
self.processor = AutoProcessor.from_pretrained(path)
self.model.to(self.device)
self.model.eval() # Set to evaluation mode
logger.info("Model and processor loaded successfully!")
except Exception as e:
logger.error(f"Error loading model: {e}")
raise
def _load_audio_from_bytes(self, audio_bytes: bytes) -> np.ndarray:
"""
Load audio from bytes and resample to 16kHz.
Args:
audio_bytes: Raw audio bytes
Returns:
Audio waveform as numpy array
"""
try:
# Load audio from bytes using librosa
audio_buffer = io.BytesIO(audio_bytes)
waveform, _ = librosa.load(audio_buffer, sr=16000, mono=True)
return waveform
except Exception as e:
logger.error(f"Error loading audio from bytes: {e}")
raise ValueError(f"Failed to load audio: {e}")
def _load_audio_from_base64(self, base64_string: str) -> np.ndarray:
"""
Load audio from base64-encoded string.
Args:
base64_string: Base64-encoded audio data
Returns:
Audio waveform as numpy array
"""
try:
# Decode base64 string
audio_bytes = base64.b64decode(base64_string)
return self._load_audio_from_bytes(audio_bytes)
except Exception as e:
logger.error(f"Error decoding base64 audio: {e}")
raise ValueError(f"Failed to decode base64 audio: {e}")
def __call__(self, data: Dict[str, Any]) -> Dict[str, Any]:
"""
Process incoming requests and return transcriptions.
Expected input formats:
1. {"inputs": "base64_encoded_audio_string"}
2. {"inputs": {"audio": "base64_encoded_audio_string"}}
3. Binary audio data in request body
Args:
data: Input data dictionary
Returns:
Dictionary containing transcription and metadata
"""
try:
logger.info("Processing inference request...")
# Extract audio data from various input formats
waveform = None
if isinstance(data, dict):
# Format 1: {"inputs": "base64_string"}
if "inputs" in data:
inputs = data["inputs"]
if isinstance(inputs, str):
# Base64-encoded audio
waveform = self._load_audio_from_base64(inputs)
elif isinstance(inputs, dict):
# Format 2: {"inputs": {"audio": "base64_string"}}
if "audio" in inputs:
waveform = self._load_audio_from_base64(inputs["audio"])
else:
raise ValueError("Missing 'audio' field in inputs dictionary")
elif isinstance(inputs, bytes):
# Binary audio data
waveform = self._load_audio_from_bytes(inputs)
else:
raise ValueError(f"Unsupported input type: {type(inputs)}")
# Direct audio field
elif "audio" in data:
audio_data = data["audio"]
if isinstance(audio_data, str):
waveform = self._load_audio_from_base64(audio_data)
elif isinstance(audio_data, bytes):
waveform = self._load_audio_from_bytes(audio_data)
else:
raise ValueError("No valid audio data found in request. Expected 'inputs' or 'audio' field.")
elif isinstance(data, (bytes, bytearray)):
# Format 3: Direct binary data
waveform = self._load_audio_from_bytes(bytes(data))
else:
raise ValueError(f"Unsupported data type: {type(data)}")
if waveform is None:
raise ValueError("Failed to extract audio from request")
logger.info(f"Audio loaded: {len(waveform)} samples at 16kHz")
# Process audio with the processor
input_features = self.processor(
waveform,
sampling_rate=16000,
return_tensors="pt"
).input_features
# Move to device
input_features = input_features.to(self.device, dtype=self.torch_dtype)
# Run inference with forced Mandarin Chinese language
with torch.no_grad():
predicted_ids = self.model.generate(input_features)
# Decode transcription
transcription = self.processor.batch_decode(
predicted_ids,
skip_special_tokens=True
)[0]
logger.info(f"Transcription complete: {transcription[:100]}...")
# Return result
return {
"transcription": transcription.strip(),
"audio_duration_seconds": float(len(waveform) / 16000),
"model": "AImpower/StutteredSpeechASR"
}
except Exception as e:
logger.error(f"Error during inference: {e}", exc_info=True)
return {
"error": str(e),
"transcription": None
}
|