File size: 272 Bytes
c8293a4
 
 
 
 
 
 
1
2
3
4
5
6
7
8
"""Complete block training and generation 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', 'block', '--out', 'outputs/block'] + sys.argv[1:])