Spaces:
Running
on
Zero
Running
on
Zero
File size: 193 Bytes
ebe6e06 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import os
cmd = """
pip install onnxruntime-gpu[cuda,cudnn]==1.22.0
find / -name 'libcudnn.so*' 2>/dev/null
python src/download_models.py
python src/webui.py
"""
os.system(cmd)
|