Spaces:
Running
on
Zero
Running
on
Zero
File size: 1,652 Bytes
e564366 87e57f0 e564366 87e57f0 e564366 87e57f0 |
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 |
import gradio as gr
from transformers import pipeline
import torch
import spaces
# Initialize model on CPU
model = pipeline(
"automatic-speech-recognition",
model="Aekanun/whisper-small-hi",
device="cpu"
)
@spaces.GPU
def transcribe_speech(audio):
"""Speech transcription with GPU support"""
try:
if audio is None:
return "กรุณาบันทึกเสียงก่อน"
# Move model to GPU
model.model = model.model.to("cuda")
# Make sure input is on the same device as model
with torch.cuda.amp.autocast():
# Process audio
result = model(audio, batch_size=1)
# Get text result
text = result["text"] if isinstance(result, dict) else result
# Move model back to CPU
model.model = model.model.to("cpu")
torch.cuda.empty_cache()
return text
except Exception as e:
# Make sure model is back on CPU in case of error
model.model = model.model.to("cpu")
torch.cuda.empty_cache()
return f"เกิดข้อผิดพลาด: {str(e)}"
# Create Gradio interface
demo = gr.Interface(
fn=transcribe_speech,
inputs=gr.Audio(type="filepath"), # Simplified Audio component
outputs=gr.Textbox(label="ข้อความ"),
title="Thai Speech Transcription",
description="บันทึกเสียงเพื่อแปลงเป็นข้อความภาษาไทย",
)
if __name__ == "__main__":
demo.queue().launch(server_name="0.0.0.0") |