A Multilayered Perceptron Nueral Network Implemented In Python & Numpy
Reason this release was yanked:
Bug when installing Numpy
Project description
Multilayered Perceptron By Pranav Sai:
#Network 2=InputSize,3=HiddenSize, 1=OutputSize
net=Network(2,3,1)
#Traning Data : training_inputs= hours slept,hours studied ; training_outputs= Grade of Test training_inputs = np.array(([2, 9], [1, 5], [3, 6]), dtype=float)
training_outputs = np.array(([92], [86], [89]), dtype=float)
net.train(training_inputs,training_outputs,1000)
print(“Predicted Output: “ + str(net.run([2,3])))
CHANGELOG
0.0.1(2/27/2022)
-First Release: Multilayered Perception
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file NeuNetMlp-0.0.3.tar.gz
.
File metadata
- Download URL: NeuNetMlp-0.0.3.tar.gz
- Upload date:
- Size: 3.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/30.0 requests/2.26.0 requests-toolbelt/0.9.1 urllib3/1.26.7 tqdm/4.62.3 importlib-metadata/4.8.1 keyring/23.2.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6424f40fa0954682e478ce6c3ba9e8b788593eec5884f2f26f17c93a0b09ece1 |
|
MD5 | a9247878311aad3b2496aad50e56d73f |
|
BLAKE2b-256 | ff9d7467ec05a39dc0e9b2140c61f122974297fbb7fedbeaac34f80525c9045e |