FIsh / tools /vqgan /inference.py
samarth2002's picture
files added
5fc76ef
raw
history blame contribute delete
332 Bytes
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()