Skip to content

Latest commit

 

History

History
17 lines (15 loc) · 577 Bytes

README.md

File metadata and controls

17 lines (15 loc) · 577 Bytes

RL-ShortestPath

Reinfocement Learning Approach to solve Shortest Path Problem.

Installation

  • Clone Repository: git clone https://github.com/jayaneetha/RL-ShortestPath.git
  • Move to Directory: cd RL-ShortestPath
  • Create a new Virtual Environment: conda create -n rl-shortestpath python=3.7
  • Activate Virtual Environment: source activate rl-shortestpath
  • Install dependencies: pip install --user --requirement requirements.txt

Usage

  • Update the maze matrix
    • 0 - plain
    • 1 - hill
    • 2 - start point
    • 4 - end point
  • Run python Run.py