Skip to main content

A package for quick&dirty DNN

Project description

QuickDNN

An implementation sklearn-like of FeedForward Neural Networks for quick applications. It can handle categorical variables with one-hot-encoding(OHE) method batch-wise as well as continuous variables.

Example

from quickdnn import QuickDNN

# load X_train, X_test, y_train, y_test

qdnn = QuickDNN(list_neurons=[100, 100, 1]) # two hidden layers with 100 neurons each and 1 output neuron. 
qdnn.fit(X_train, y_train) # training phase
y_pred = qdnn.predict(X_test) # predicting phase

Installing

$ pip install quickdnn

License

This project is licensed under the MIT License - see the LICENSE.md file for details.

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

quicknn-1.0.1.tar.gz (5.9 kB view hashes)

Uploaded Source

Built Distribution

quicknn-1.0.1-py3-none-any.whl (7.2 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