File size: 383 Bytes
3284fa6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import subprocess
import sys
script = 'make_dataset.py'
command = f'{sys.executable} scripts/{script}'
subprocess.run(command, shell=True)
script = 'build_features.py'
command = f'{sys.executable} python scripts/{script}'
subprocess.run(command, shell=True)
script = 'model.py'
command = f'{sys.executable} python scripts/{script}'
subprocess.run(command, shell=True) |