Skip to main content

Deep learning library

Project description

BlueBird

Documentation Status Build Status PyPI version

Simple deep learning library.

Usage

Install:

pip install bluebird-stoick01

Here is a simple implemetation of a model in bluebird.

from bluebird.nn import NeuralNet
from bluebird.activations import Relu, Softmax
from bluebird.layers import Input, Dense
from bluebird.loss import CategoricalCrossEntropy
from bluebird.optimizers import SGD

# create the neural net
net = NeuralNet([
    Input(200), # input layer
    Dense(100, activation=Relu()),  # hidden layers with relu activation
    Dense(50, activation=Relu()),
    Dense(10, activation=Softmax()) # last hiddent layer with softmax activation
])

# define optimizer and loss function
net.build(optimizer=SGD(lr=0.003), loss=CategoricalCrossEntropy())

# train your model
net.fit(X_train, y_train, num_epochs=20)

For more info checkout the docs

Roadmap

There are a lot of updates planed, you will find comments throughout the library that define what features I'm planing to add in the future.

Contribution

Feel free to help, I know that there are many things that need to be optimized and implemented in the future, any help is welcome.

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

bluebird-stoick01-0.1.0.tar.gz (15.4 kB view details)

Uploaded Source

File details

Details for the file bluebird-stoick01-0.1.0.tar.gz.

File metadata

  • Download URL: bluebird-stoick01-0.1.0.tar.gz
  • Upload date:
  • Size: 15.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.6.7

File hashes

Hashes for bluebird-stoick01-0.1.0.tar.gz
Algorithm Hash digest
SHA256 59c0399f929764118536c81f069a3c84a4d8b27b7f1ec142b61fa9fb6ea4c2fe
MD5 6a02aa0a62cd1788ce3a2834bd232d86
BLAKE2b-256 3033083ba18540b9327f601cda2f5a83750388d5e3ef6273bb2c472cd9bc6017

See more details on using hashes here.

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