keesephillips's picture
Upload 19 files
35702e9 verified
raw
history blame
383 Bytes
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)