 |
Backpropagation neural net (2): Create a neural network
Source code name: "neural_net_2.py"
Programming language: Python
Topic: Artificial Intelligence/neural net
DMelt Version 1. Last modified: 12/18/2016. License: Pro
https://datamelt.org/code/cache/neural_net_2_6314.py
To run this script using the DMelt IDE,
copy the above URL link to the menu [File]→[Read script from URL] of the DMelt IDE.
from jhplot import *
from jhplot.io import *
net = HNeuralNet()
net.addFeedForwardLayer(5)
net.addFeedForwardLayer(3)
net.addFeedForwardLayer(1)
net.reset()
net.save("test.eg")
net.showNetwork()
You see the box below because you did not login.