Skip to content

This repository contains the Unity project for the Memory Systems Lab version of the Virtual Morris Water Maze.

Notifications You must be signed in to change notification settings

yhyu13/MSL-VirtualMorrisWaterMaze

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

68 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MSL-VirtualMorrisWaterMaze

This repository contains the Unity project for the Memory Systems Lab version of the Virtual Morris Water Maze.

mazeV0.23.PNG

Instruction

Download .zip file from the Release of thie repo. Then unzip.

(Note I use tensorflow-gpu. The cpu .yml file is available to you as well)

Install environment dependencies:

conda env create -f Maze.yml
activate Maze

Before start testing result, head to Analysis/model.py. Change exe_location and cfg_location to your local repository.

Then download the pretrained model from: google drive/model

Run a test trail with 15000 eps trained model. By default, the algo will start 6s later after the Unity window launched.

python main.py --num_worker=1 --load_model

The following discprition is cited from our ongoing publication.


Abstract

We show a baseline agent for solving the Virtual Morris Water Maze task, using multiple actors with their own environments to simultaneously collect experience. The agent uses contemporary computer vision and memory dependency network. We test the model through variety of scenarios that successfully find the hidden platform fast and reliably. We also found the agent is able to outperform human testers in terms of distance travel, time elapsed and the complexity of path planning through enough training.

Introduction

In recent years, a variety of reinforcement learning algorithms have been applied to solve more complicated interaction environment than toy games. We are inspired to connect the research between Neuroscience and Machine Learning because Neuroscience heavily inspires reinforcement learning as the concept of temporal difference and sparks Neural Network architecture such as convolutional and recurrent network. The classic experiment of Morris Water Maze (MWM) favors reinforcement learning especially because the following reasons:

  • (1) it requires learning from interaction,
  • (2) it exhibits memory-based real time decision-making problem,
  • (3) no clear optimal path searching strategy is given by a external supervisor.

Two advantages of MWM are: (1) the experimental development is matured with plenty of setup and measurement technique, (2) researchers have developed Virtual Morris Water Maze (A 3D environment powered by Unity 3D) where we can encapsulate as a reinforcement learning environment.

Among the reinforcement learning algorithms, Asynchronous Advantage Actor-Critic (A3C) outperforms the previous state-of-the-art algorithm due to its parallelism nature. It takes advantages of multiple cores equipped by most modern computers to train faster and explore more. Another algorithm of interest is Recurrent Deterministic Policy Gradient (RDPG) which is a improvement to solve memory-based control problem in continuous action space.

Development

The communication between the Unity environment and the python script is built on Socket. An actor talks to an environment via a IP address (in my case 127.0.0.1) with a most available port picked by Socket. Each actor asynchronously interact, collect data, and update its local operators at the beggining of each episode. The tensorflow graph takes in charge of the asynchronous policy gradient update.

Capture2.PNG

Architecture

A3C Neural network.png

Result

Capture4.PNG

3750train1.png Capture3.PNG

Ackonwledgement

Thanks to Kevin Horecka at UIUC Beckman Institute for establishing the orignal work, and for his generous support and insightful comments. Thanks to Arthur Juliani for offering greate introduction to A3C architecture:

About

This repository contains the Unity project for the Memory Systems Lab version of the Virtual Morris Water Maze.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 61.5%
  • ShaderLab 24.1%
  • Python 10.5%
  • Jupyter Notebook 2.1%
  • HLSL 1.3%
  • GLSL 0.5%