Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 859 Bytes

README.md

File metadata and controls

31 lines (19 loc) · 859 Bytes

Tetris Neural Network

A game of Tetris DX

GOALS

  • Get a neural network to play tetris.
  • Learn about deep Q learning.
  • Target score: 10,000 points

Feature Engineering

The screen taken from the emulator undergoes a lot of pre-processing. The screen is first turned black and white and then it is sliced so it only includes the tetris board without any of the score, line count, level, or next piece information The end result is an array that represents the max height of each column of blocks.

todo: describe feature engineering more.

Optimization Methodology

todo: describe optimization

Gameplay

todo: show gameplay with gif

Thanks