Skip to main content

AI library in python using numpy, with end-to-end reverse auto-differentiable dynamic Computational Graph

Project description

import ai

AI library in python using numpy, with end-to-end reverse auto-differentiable dynamic Computational Graph. Implements general Deep Learning library components with the end API similar to that of my favourite, Pytorch.

About

Begineers in Deep Learning will find this repo useful. The purpose of this library is to serve as an educational tool, a reference guide to better understand the mechanics of deep concepts of AI by implementing everything from scratch. I want to expose the functions of Deep Learning APIs as clearly as possible. I originally built this for myself to understand Deep Learning critically, whose importance is pointed by one of favourite AI researchers Andrej Karpath, in this video.

So, as you have guessed, the best way to utilise this library is by implementing your own from scratch. Refer to this library when you don't understand how a Deep Learning component is built, tweak it and have fun :)

Features

This library implements:

  • a Parameter object - that holds the weights and gradients(wrt to a scalar quantity)
  • a Computational Graph - to store operations during forward pass, as a bfs walk in Directed Graph and execute them in reverse order during backprop. This has all the necessary functions to help realise many layers to do deep learning(activations, regularizers etc.)
  • Layers/models - the fundamental Linear layer, LSTM and RNN, Conv2d and ConvTranspose2d, BatchNorm and a generic Model template for util functions
  • Loss - Mean Square, Cross Entropy, BCELoss and few other loss functions.
  • Optimizers - basic SGD, Adam, Adagrad and Adadelta optimizer functions with choice of momentum.
  • Vsisualization function to draw the computational graph of any program you write.
  • some example implementations using this library

I will keep updating the library with more explanations, documentation and a similar library in my favourite language c++ soon!

Installation

This library requires Python>=3.6 and numpy. Install the library as below(Installation takes care of the dependencies):

pip install import-ai

or you could just clone this repo and work locally as below:

git clone https://github.com/srirambandi/ai.git
pip install -r requirements.txt

Usage

  • You can directly work with Parameter objects, ComputationGraph and have fun! (The graph engine takes care of the reverse-mode auto-differentiation - the backpropagation algorithm. It is of highest importance that you actually understand how these internal mechanics work together, that's the foremost intended purpose of this library.)

import and initiate

>>> import ai
>>> x = ai.Parameter((3, 1), eval_grad=False)
>>> W = ai.Parameter((3, 3))
>>> b = ai.Parameter((3, 1), init_zeros=True)
>>> print(W)
Parameter(shape=(3, 3), eval_grad=True) containing:
Data: [[-0.01092495  0.00542457 -0.00562512]
 [ 0.00911396 -0.00143499 -0.0160998 ]
 [-0.01601084  0.01146977  0.00797995]]

do operations

>>> y = (W @ x) + b       # supports basic arithmetic
>>> print(y)
Parameter(shape=(3, 1), eval_grad=True) containing:
Data: [[-0.00011536]
 [ 0.00012833]
 [-0.00023106]]

backward

>>> y.grad[1, 0] = 1.0
>>> y.backward()
>>> print(W.grad)
array([[ 0.        ,  0.        ,  0.        ],
       [ 0.00873683, -0.00623124, -0.00246939],
       [ 0.        ,  0.        ,  0.        ]])

see the Computational Graph for the above program

>>> ai.utils.draw_graph(filename='linear')

Computational Graph of linear

Parameters(single circles) interact with functions(double circles) and output Parameters. The values in the circles of parameters are the node ids indexed with the bfs-walk of graph during forward pass, goes from lowest node id circle to highest node id circle. The backward pass is the same graph with edges reversed, goes from highest node id circle to lowest node id circle. The circles with None doesn't have any backward operations attached to them. The circes with red line doesn't need gradients(inputs, outputs, constants). Also, checkout some other nice renderings in the assets folder.

  • Or a more schematic code to use in Deep Learning projects as below.
import ai


ai.manual_seed(2357)

def data_generator(file):
    yield data_batch

class Net(ai.Model):
    def __init__(self):
        self.conv = ai.Conv2d(3, 16, kernel=3, stride=1, padding=0)
        self.fc = ai.Linear(x, 10)

     def forward(self, x):
        o1 = ai.G.relu(self.conv(x))
        o2 = ai.G.dropout(ai.G.maxpool(o1), p=0.5)
        o3 = self.fc(o2)

        return ai.G.softmax(o3)

model = Net()
print(model)

L = ai.Loss('CrossEntropyLoss')
optim = ai.Optimizer(model.parameters(), optim_fn='Adam', lr=1e-3)

def evaluate():
    # testing and inference
    ai.G.grad_mode = False

    predicttion = model.forward(test_input)

    ai.G.grad_mode = True

# some control parameters

while condition:
    # training loop

    scores = model.forward(train_input)
    loss = L.loss(scores, outputs)
    loss.backward()

    # logging info

    optim.step()
    optim.zero_grad()


model.save()

Implementations

Examples directory contains some basic popular Deep Learning implementations, and I will add challenging ones soon.

Other examples using this library, resting in their stand-alone repos are:

Goals

To implement other learning paradigms besides sipervised such as, Unsupervised and Reinforcement Learning algorithms into the library.

I want to be able to implement every model in the below Deep Learning Toolkit picture source tweet

DL Toolkit

License

MIT

Author

Sri Ram Bandi / @_srirambandi_

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

import_ai-1.3.4-py3-none-any.whl (20.4 kB view details)

Uploaded Python 3

File details

Details for the file import_ai-1.3.4-py3-none-any.whl.

File metadata

  • Download URL: import_ai-1.3.4-py3-none-any.whl
  • Upload date:
  • Size: 20.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.7.6

File hashes

Hashes for import_ai-1.3.4-py3-none-any.whl
Algorithm Hash digest
SHA256 e950cb9289fee351c1020e3a18642c0654adb72bf38572f89d71dd297b0163c0
MD5 622922fd5ebc20822a5cf6b255cf7aaa
BLAKE2b-256 2eb74e418e589a0f3a71b4e959c8001e990cda97a483c33f7f94ef25e566bb3d

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