ASR_gradio / app.py
Kr08's picture
Gradio ASR - first commit
f36e52e verified
raw
history blame
221 Bytes
import torch
from model_utils import load_models
from audio_processing import iface
# Clear GPU cache and load models at startup
torch.cuda.empty_cache()
load_models()
if __name__ == "__main__":
iface.launch()