kerasify icon indicating copy to clipboard operation
kerasify copied to clipboard

Small library for running Keras models from a C++ application

Results 6 kerasify issues
Sort by recently updated
recently updated
newest added

I'm currently trying to use Kerasify to make the code for a Unet network, but I get the following error: `AssertionError: Unsupported layer type: Conv2DTranspose` and `AssertionError: Unsupported layer type:...

Is there any timeline for supporting models trained with TensorFlow backend?

I'm currently trying to use Kerasify to make the code for a VGG16 network, but I get the following error: `AssertionError: Unsupported layer type: InputLayer` I'm using a simple VGG16...

This change is [](https://reviewable.io/reviews/moof2k/kerasify/1)

In test_cc in README.md, it says `Tensor in(1)`, but shouldn't it be `Tensor in(10)`?? ``` #include "keras_model.h" // Create a 1D Tensor for input data. Tensor in(1); in.data_ = {{0,...