I've been working on training a bot(DQN) on Pong using openai-gym
and torch
. After some success on the PongNoFrameskip-v4
environment, it occurred to me that it would be super nice if I would be able to play against this bot after training(and hopefully lose). Recently, I stumbled upon this keyboard agent, which seems to allow imitation training - training the bot from your plays. However, I haven't yet found a way to start an environment with my trained model as the right player(green) and play as the other player(brown).
Would really appreciate any advice regarding this topic. Thanks!