EasyNN is a python package designed to provide an easy-to-use Neural Network. The package is designed to work right out of the box with multiple datasets, while also allowing the user to customize features as they see fit.
Project description
EasyNN - Neural Networks made Easy
EasyNN is a python package designed to provide an easy-to-use Neural Network. The package is designed to work right out of the box with multiple datasets, while also allowing the user to customize features as they see fit.
Requires Python version 3.9.7 or greater.
Check out our wiki for more information.
Installation:
Run python's pip3 to install:
pip3 install EasyNN
Getting started with EasyNN(Basic Example):
To see more documention please see our wiki's infomation on the number mnist dataset.
from EasyNN.dataset.mnist.number import trained_model, dataset, show
# Downloads dataset to computer
train_data,train_labels,test_data,test_labels = dataset
# Grab a training data image
image = test_data[0]
# Uses the EasyNN train model on an example test image.
print(trained_model(image))
# Show the image
show(image, "image")
Output:
Downloading Trained MNIST model...
Download complete.
Downloading number_train-images-idx3-ubyte.gz...
Downloading number_t10k-images-idx3-ubyte.gz...
Downloading number_train-labels-idx1-ubyte.gz...
Downloading number_t10k-labels-idx1-ubyte.gz...
Download complete.
Save complete.
7
Image output:
Future goals for non known datasets:
from EasyNN.model import model
xtrain = "My images"
ytrain = "My labels"
model.dataset = xtrain, ytrain
model(xtrain[0])
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
Built Distribution
File details
Details for the file EasyNN-0.0.20.tar.gz
.
File metadata
- Download URL: EasyNN-0.0.20.tar.gz
- Upload date:
- Size: 14.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.6rc1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c6cd787a9e32b67b1c76118bb3725ad55b60691c509239e6fb758c8269aaa7a9 |
|
MD5 | 2fa123e688f3e4e549e96ed76fc9ce34 |
|
BLAKE2b-256 | c9ca26cdbb86a1e70bd69eddb65e9e726a6bb2247ab566677f03969c46ef1096 |
File details
Details for the file EasyNN-0.0.20-py3-none-any.whl
.
File metadata
- Download URL: EasyNN-0.0.20-py3-none-any.whl
- Upload date:
- Size: 25.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.6rc1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 556c9123cc968d772cf5504827875d9fdbf82aa03eaaa7f606f00829fb7f6090 |
|
MD5 | af81efc3cffc9024c8785ffc7ecfdc40 |
|
BLAKE2b-256 | bfa8fed197731fe5b337a3bd66674bda543ab408b028471779192d4f8233333c |