Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 1.22 KB

File metadata and controls

22 lines (14 loc) · 1.22 KB

Attention-Actor-Critic-for-Atari-Learning

A Reinforcement Learning algorithm with attention mechanism for Atari Learning

This is a Reinforcement Learning based Actor Critic model for Atari Games Learning. The repository contains three different architectures.

Attention Model

Uses dot product attention mechanism as explained in the paper "Attention is all you need" in an Actor Critic network to predict future actions. Requires one frame as state input

alt text

Attention Visualization

alt text

Recurrent Model

Uses a Gated Recurrent Unit to understand temporal dependencies in order to predict future actions. Requires one frame as state input.

alt text

Convolutional Model

conv-a3c.py uses convolutional network to predict optimal actions. It uses four frames as state input.

alt text