Skip to content

Releases: RobBa/dl_lib

v0.9.0

22 Mar 16:52

Choose a tag to compare

First version with training loops.

Features:

  • Tensor object
  • FeedForward Layer
  • Sequential network
  • Activation functions: ReLU, LeakyReLU, Sigmoid, Softmax (numerically stable)
  • Loss functions: BCE, CrossEntropy, RMSE, BceWithSigmoid, CrossEntropyWithSoftmax
  • Autograd solutions for all operations
  • Optimizers: SGD, RMSProp
  • C++ train loop
  • numpy to Tensor and Tensor to numpy conversion
  • Compilation into structured Python library

Unit tests:

  • Tests for all features in C++ and Python

Examples:

  • MNIST dataset learning and verification

v0.1.0

17 Mar 16:46

Choose a tag to compare

v0.1.0 Pre-release
Pre-release

Computational graph on Tensors completed