Creating a Neural Network
Hula has a multitude of ways to initialize a Neural Network.
The two modules you will need to know are the DeepR
module and the rlutils
module
the DeepR
module has the classes required to initialize a Neural Network, while the rlutils
module has activation functions to assign to each layer.
The FeedForwardLayer
class is used to create a single layer in your Neural Network
array([0.99988349])
All outputs are numpy array objects.
Last updated