keras2sql icon indicating copy to clipboard operation
keras2sql copied to clipboard

Deep Learning (Keras) Models Deployment using SQL databases

Results 2 keras2sql issues
Sort by recently updated
recently updated
newest added

This is probably a way to avoid some unnecessarily large models and generate an (almost) equivalent SQL code.

Sample use case : simple convnet on the MNIST dataset keras example : https://github.com/keras-team/keras/blob/master/examples/mnist_cnn.py used layers and activation functions : ```Python model.add(Conv2D(32, kernel_size=(3, 3), activation='relu', input_shape=input_shape)) model.add(Conv2D(64, (3, 3), activation='relu'))...

enhancement