pranamanam's picture
Add Lecture 6 flow maps with tested training, sampling, and course navigation
da3babb verified
Raw
History Blame Contribute Delete
273 Bytes
#!/usr/bin/env python3
"""Run the complete fmlm training and sampling example."""
import sys
from pathlib import Path
sys.path.insert(0, str(Path(__file__).resolve().parents[1]))
from run import main
if __name__ == '__main__':
main(['--method', 'fmlm', *sys.argv[1:]])