Neural Api Versions Save

CAI NEURAL API - Pascal based deep learning neural network API optimized for AVX, AVX2 and AVX512 instruction sets plus OpenCL capable devices including AMD, Intel and NVIDIA.

v1.0.8

10 months ago

New examples for beginners:

For advanced users:

This release also includes some bug fixes, better support for grouped convolutions, better documentation and source code comments.

v1.0.7

1 year ago

Updates in this new release v1.0.7 are:

  • CIFAR-10 Resized program has been added to the main readme file. It’s a program that resizes CIFAR-10 and CIFAR-100 images to 64x64 and 128x128 pixels.

  • #77: Added results for the ResNet example.
  • #78: Added TNNetLayer.ForcePositiveWeights.
  • #79: Updated hypotenuse example.
  • #81: Added FlipY with MultipleSamplesAtValidation.
  • #84: Faster backpropagation by not backpropagating small values.

v1.0.6

2 years ago

This is what is new in v1.0.6:

  • #73 : CIFAR-10 - Only 2000 samples for validation as default quantity.
  • #74 : Fitting methods should load weights from best performing epoch.
  • #76 : Fixed bug at TNNetSum that prevents ResNet architectures style to learn.
  • #77 : Added a ResNet example.

v1.0.5

2 years ago

This release has:

  • You can now define the validation sample size when loading CIFAR-10 and CIFAR-100: #73 . By tweaking this number, you may find bigger test accuracies when training your models.
  • There is a new activation function TNNetSwish6. This activation function is a fantastic replacement for ReLU6 as it gives higher accuracy while maintaining numerical stability.

v1.0.4

2 years ago

This release implements new data augmentation fitting properties: TNeuralImageFit.ChannelShiftRate and TNeuralDataLoadingFit.ChannelShiftRate .

This release also fixes #70 - Using HasImgCrop breaks execution.

v1.0.3

2 years ago

New Layers:

  • TNNetChannelMulByLayer.
  • TNNetCellMulByLayer.
  • TNNetInterleaveChannels.

New Activation Functions:

  • TNNetSwish #65.
  • TNNetReLU6 #69.

API Additions:

  • TNNetVolumeList.FillTag.
  • TFileNameList.
  • TNeuralImageLoadingFit #49.
  • TNeuralThreadList.CalculateWorkingRange.
  • TNeuralThreadList.GetRandomNumberOnWorkingRange.
  • TVolume.GetValueCount.
  • TVolume.GetSmallestIdxInRange.
  • TNNetVolumeList.AddValue.
  • TNNetVolumeList.Divi.
  • TNNetNeuronList.GetMaxAbsWeight.

Other Improvements:

  • Improvements on #48.
  • Fixes #21, #55, #58, #61, #66 and #68.
  • Updated documentation.
  • New plant leaf disease classification example #49.
  • Better input sampling at TNeuralImageLoadingFit and TNeuralImageFit #51.

v1.0.2

3 years ago

This version fixes #42, #43, #44 and #45.

There are also code optimizations for processors other than X86 based.

v1.0.1

3 years ago

This release fixes bugs #39 and #41 .

v1.0.0

3 years ago

After a long long time coding and testing, it's time to call it version 1.0! YAY!

Really comprehensive testing has been made. The last batch of testing came from a Generative Adversarial Network Testing that helped to debug a lot.

These are some of the images produces with this testing:

These are the main changes since the last release:

  • We have a new convolutional layer type: TNNetConvolutionSharedWeights. Instead of having its own neurons and weights, this convolutional layer uses the same neurons and weights from another existing layer. So, if you need 2 layers with the same neurons, you can add TNNetConvolutionSharedWeights to your network. Why would you need something like this? Maybe, your NN needs to learn the same patterns in different scales (such as big and small dogs are all dogs). You can follow this example.
  • Adding FitLoading Example.
  • Documentation has been updated: #30 and #33.
  • Fixes bugs #35 and #36.
  • Added method CountNeurons.
  • TNNetDeMaxPool optimization.

There are still open bugs. But this is how life is.

I wish everyone happy pascal coding and to live long and prosper!

v0.991

3 years ago

New examples:

Fixes bugs #31 and #32.

Adds new layer types:

  • TNNetReLUSqrt: does a ReLU followed by square root.
  • TNNetPower: calculates the power function.

Documentation updates.