Skip to content
This repository has been archived by the owner on Feb 25, 2021. It is now read-only.

Latest commit

 

History

History
35 lines (28 loc) · 1.52 KB

README.md

File metadata and controls

35 lines (28 loc) · 1.52 KB

CS294-112 Assignment Solutions

Solutions to the fall 2018 edition of the assignments for CS294-112: Deep Reinforcement Learning

Based on the video lectures from the Fall 2017 edition of the course.

Installation

Starting code

To be able to run the code for each homework, please start by following the instructions from each homework's PDF (linked with each assignment below) about how to install the homework. As for setting up a Python environment, the provided cs294.yml file is a conda requirements file that you can use to create a conda environment using the following command:

conda env create -f cs294.yml

This will create a conda environment named cs294.

  • Behavioral Cloning (Done)
  • DAgger
  • Computation Graph (Done)
  • Policy Gradient (Done)
  • Neural Network Baselines (Done)
  • Q-Learning
  • Actor-Critic
  • Problem 1
  • Problem 2
  • Problem 3a
  • Problem 3b