rl-ecology / sb3 /train.py
cboettig's picture
tidy up
5c6be26
raw
history blame contribute delete
209 Bytes
import argparse
parser = argparse.ArgumentParser()
parser.add_argument("-f", "--file", help="Path config file", type=str)
args = parser.parse_args()
from ecorl.utils import sb3_train
sb3_train(args.file)