developing main experiment loop, functions required to implement in bc and other imitation methods

This commit is contained in:
Arec
2021-07-20 05:58:24 -07:00
parent c0755f5bb5
commit 2fb5d5e5b1
4 changed files with 143 additions and 1 deletions

127
src/main.py Normal file
View File

@@ -0,0 +1,127 @@
import torch
import gym
import intersim
import numpy as np
import os
opj = os.path.join
from src import InteractionDatasetSingleAgent
def basestr(**kwargs):
"""
Return base prefix for all files relating to a certain experiment
Args:
kwargs (dict): keyword arguments sent to main training loop
Returns:
basestr (str): prefix
"""
return 'base_'
def main(method='bc', train=False, test=False, loc=0, **kwargs):
"""
Main loop for training and testing different imitation models
Args:
train (bool): whether to run train loop
test (bool): whether to run test loop
method (str): the method to try for imitation
loc (int): the location index of the roundabout
kwargs (dict): remaining kwargs for policy and training loop
"""
outdir = opj('output',method,'loc%02i'%(loc))
if not os.path.isdir(outdir):
os.mkdir(outdir)
filestr = opj(outdir, basestr(**kwargs))
# define transforms
transforms={}
# method-based training
if method=='bc':
from src import bc
policy = bc.BehaviorCloningPolicy(transforms=transforms, **kwargs)
load_policy = bc.load_policy
metrics = bc.metrics
train = bc.train
else:
raise NotImplementedError
# default train / cv / test split datasets
if train:
train_dataset = InteractionDatasetSingleAgent(loc=loc, tracks=[0,1,2], transforms=transforms, train=True)
cv_dataset = InteractionDatasetSingleAgent(loc=loc, tracks=[3], transforms=transforms)
train(train_dataset, cv_dataset, policy, filestr=filestr, **kwargs)
if test:
# load policy
policy = load_policy(filestr=filestr)
# simulate policy
test_track = 4
simulate_policy(policy, loc=loc, track=track, filestr=filestr)
# run test metrics
# test_dataset = InteractionDatasetSingleAgent(loc=loc, tracks=[4], transforms=transforms, train=False)
# metrics(test_datset, policy)
def simulate_policy(policy, loc=0, track=0, filestr=''):
"""
Simulate a trained policy
Args:
policy: the policy to simulate, which should return action directly
loc (int): location index to test policy
track (int): track to test policy
filestr (str): path prefix to save simulation to
"""
# animate from environment
env = gym.make('intersim:intersim-v0', loc=loc, track=track,
min_acc=-np.inf, max_acc=np.inf)
ob, _ = env.reset()
env.render()
done = False
while not done:
# get action
action = policy(ob)
# propagate environment
ob, r, done, info = env.step(action)
env.render()
env.close(filestr=filestr)
def parse_args():
"""
Parse arguments to main
Returns:
kwargs: dictionary of arguments:
train (bool): whether to run train loop
test (bool): whether to run test loop
method (str): the method to try for imitation
loc (int): the location index of the roundabout
"""
import argparse
parser = argparse.ArgumentParser(description='Save Expert Trajectories')
parser.add_argument('--loc', default=0, type=int,
help='location (default 0)')
parser.add_argument("--train", help="train model",
action="store_true")
parser.add_argument("--test", help="test model",
action="store_true")
parser.add_argument("--method", help="modeling method",
choices=['bc', 'gail', 'advil'], default='bc')
parser.add_argument()
parser.add_argument()
args = parser.parse_args()
kwargs = {
'train'=args.train,
'test'=args.test,
'method'=args.method,
'loc'=args.loc
}
return kwargs
if __name__ == '__main__':
kwargs = parse_args()
main(**kwargs)