Package for working with Neural Networks for small projects
Project description
SimpleNode
SimpleNode is a small package for working with Neural Networks in python
Features
- Easily create a Neural Network
- Create Labled Data
- Train the Neural Network using Labled Data
- Save trained models
- Load previously saved models
- Make predictions with new inputs
Example
from NeuralNetwork import NeuralNetwork
// Sample XOR dataset
x = [[0, 0], [0, 1], [1, 0], [1, 1]]
y = [[0, 1], [1, 0], [1, 0], [0, 1]]
Network = NeuralNetwork([2, 3, 2])
// Params: trainDataX, trainDataY, epochs, reportFreq
Network.Learn(x, y, 10, 1)
// Save Network
Network.SaveNetwork("MyNetwork.csv")
// Predict
print( Network.Predict([1, 0]) )
Created by Artyom Yesayan
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
SimpleNode-0.32.tar.gz
(4.2 kB
view details)
Built Distribution
File details
Details for the file SimpleNode-0.32.tar.gz
.
File metadata
- Download URL: SimpleNode-0.32.tar.gz
- Upload date:
- Size: 4.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 61bd30b63ab1f03ad77360f298489347d26a6dfc41f66ba508dd972373e551f9 |
|
MD5 | ed9876623dd1e065b49cfd346831ea97 |
|
BLAKE2b-256 | df0225372a92696fd9238eeb55edf257be2f85e9ed8761b9d015f0d932352c7d |
File details
Details for the file SimpleNode-0.32-py3-none-any.whl
.
File metadata
- Download URL: SimpleNode-0.32-py3-none-any.whl
- Upload date:
- Size: 5.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2c21144654933282af211cf0575f833f8aa1963673a6a623b06b468d88e58a31 |
|
MD5 | af210462180fdc51c7413ddcb89396a5 |
|
BLAKE2b-256 | 84d0698fb1ad4e0e97f043d3015617022b0161e4c637fad294805b0093525625 |