File size: 332 Bytes
5fc76ef |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import os
import subprocess
import sys
#!/usr/bin/env python
def main():
# Make path relative to this file
script_path = os.path.join(
os.path.dirname(__file__), "../../fish_speech/models/vqgan/inference.py"
)
subprocess.run(["python", script_path] + sys.argv[1:])
if __name__ == "__main__":
main()
|