| #!/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:]]) | |