Tianshou/test/pettingzoo/test_tic_tac_toe.py
2022-10-02 09:33:12 -07:00

22 lines
463 B
Python

import pprint
from tic_tac_toe import get_args, train_agent, watch
def test_tic_tac_toe(args=get_args()):
if args.watch:
watch(args)
return
result, agent = train_agent(args)
assert result["best_reward"] >= args.win_rate
if __name__ == "__main__":
pprint.pprint(result)
# Let's watch its performance!
watch(args, agent)
if __name__ == "__main__":
test_tic_tac_toe(get_args())