patrickloeber / snake-ai-pytorch

MIT License
596 stars 384 forks source link

Question: Is it possible to implement this in other arcade games #17

Open Zahidpichen1 opened 6 months ago

Zahidpichen1 commented 6 months ago

Hi, I am new to reinforcement learning field. So, when I saw the YouTube video which by the way was awesome!!

I want to know if it is possible to use the same algorithms on other games like arkanoid.

Thank you in advance.

ethicalhacker7192 commented 6 months ago

You will have to make other algorithms for other games, it really depends what type, for example, for snake, a PPO algorithm is usually sufficient, but for more complex games like chess, you should use a Double Deep Q Learning algotithm with replays.