Status: (Final)
Authors: [email protected]
Reviewers: dfawley@, menghanl@, yuxuanli@, psrini@
Last Updated: 2018-02-25
Status: (Final)
Authors: [email protected]
Reviewers: dfawley@, menghanl@, yuxuanli@, psrini@
Last Updated: 2018-02-25
import numpy as np | |
import _pickle as pickle | |
import gym | |
# Fully connected NeuralNet with minimum two layers. | |
# This is a simple implementation with no bias parameters. | |
# To work with RL this neural net is such that it feedforwards | |
# for only example at a time but backprops a batch. | |
class NeuralNet: |