table_extraction / setup.py
keesephillips's picture
created dev branch and refactored code
31e0d1a verified
raw
history blame
375 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} scripts/{script}'
subprocess.run(command, shell=True)
script = 'model.py'
command = f'{sys.executable} scripts/{script}'
subprocess.run(command, shell=True)