Under construction
Neural network library for python.
$ pip install pynn
from pynn import Pynn
if __name__ == '__main__':
# Returns a new neural network
# instance with the default parameters.
pn = Pynn()
# Dataset.
data_input = [0.27, 0.31]
data_target = [0.7]
# Training dataset.
_, _ = pn.train(data_input, data_target)
More documentation is available at the pynn website.
You can find examples of neural networks in the example's directory.