Skip to main content

Deep learning library

Project description

BlueBird

Simple deep learning library.

Usage

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.data import BatchIterator
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)

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

Uploaded Source

Built Distribution

bluebird_stoick01-0.0.2-py3-none-any.whl (24.6 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: bluebird-stoick01-0.0.2.tar.gz
  • Upload date:
  • Size: 12.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.6.9

File hashes

Hashes for bluebird-stoick01-0.0.2.tar.gz
Algorithm Hash digest
SHA256 f79ab53957e7f7a7e4c3dde447dde78866a5c8e26d782af37969dc5f54c83654
MD5 0bc2f10a5846a198216b82ed346b8158
BLAKE2b-256 f663a1ebfb49b326411cf0c60a1ba9d76299fa25c15c463f8ec435925a8965e0

See more details on using hashes here.

File details

Details for the file bluebird_stoick01-0.0.2-py3-none-any.whl.

File metadata

  • Download URL: bluebird_stoick01-0.0.2-py3-none-any.whl
  • Upload date:
  • Size: 24.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.6.9

File hashes

Hashes for bluebird_stoick01-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 93a29abcebcaef678f76ada6b7ba535fd319d6d7d42784b63a465574d6c40c6a
MD5 a5642e39f7ad4feea92f4c4e8551bb58
BLAKE2b-256 8938140015911dc5cc9881000e06c89fd26db27aa20fafd25a6ae229c5b33681

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