Skip to main content

Deep learning library

Project description

BlueBird

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.0.4.tar.gz (14.7 kB view details)

Uploaded Source

File details

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

File metadata

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

File hashes

Hashes for bluebird-stoick01-0.0.4.tar.gz
Algorithm Hash digest
SHA256 cdfc1cea09dd18506f57a73a93c9dc9ee082e61b8f258dbe8f000aaf02e91eef
MD5 0f866238cafd2d10ac13fdb18dca3ab8
BLAKE2b-256 bb2bfd0c3d67637242da71d9078a0da3b6b11883dbad6285ca3d84134b815f10

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