Skip to main content

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

EasyNN-0.0.20.tar.gz (14.7 kB view hashes)

Uploaded Source

Built Distribution

EasyNN-0.0.20-py3-none-any.whl (25.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page