Python Forum

Full Version: Artificial Intelligence and 2 APIs
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Smile Hello Smile ,
After a couple of years of coding, I ended having a neural network API coded in Object Pascal. Then, I realized that it would be good to compare it against python implementations. After some time, I noticed that some portions of my python code were repeating and then decided to code a Keras based python API: K-CAI NEURAL API.

As I needed python for coding image classification experiments, I ended coding an API that allows developers to super quickly try their neural networks on common image classification data sets:

* CIFAR-10 and CIFAR-100: https://www.cs.toronto.edu/~kriz/cifar.html .
* MNIST: http://yann.lecun.com/exdb/mnist/ .
* FASHION MNIST: https://github.com/zalandoresearch/fashion-mnist .

This is a google colab example:
https://colab.research.google.com/github...aset.ipynb

K-CAI NEURAL API is a work in progress.

Smile Wish everyone happy coding. Smile