Some checks failed
Close inactive issues / close-issues (push) Has been cancelled
18 lines
332 B
Python
18 lines
332 B
Python
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()
|