Spaces:
Build error
Build error
File size: 221 Bytes
f36e52e |
1 2 3 4 5 6 7 8 9 10 11 12 |
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()
|