Skip to content
Snippets Groups Projects
Commit 1aca5f36 authored by hsharif3's avatar hsharif3
Browse files

Update Support.md in Keras

parent 1450e86f
No related branches found
No related tags found
No related merge requests found
## Supported Keras Operators ## Supported Keras Operators
The Keras frontend supports `Sequential()` Keras models. The Keras frontend supports `Sequential()` Keras models.
...@@ -23,7 +22,19 @@ The list of supported operations is as follows: ...@@ -23,7 +22,19 @@ The list of supported operations is as follows:
## Limitations ## Limitations
* We support convolutional neural networks that include the supported operators above - RNNs/LSTMS are not supported * Currently, we support Convolutional Neural Networks (CNNs) that include the supported operators (above) - RNNs/LSTMs not supported
* We currently only support models in NCHW format (NHWC is not supported) * We currently only support models in NCHW format (NHWC is not supported)
* Softmax operator should be the last operation in the CNN pipeline * Softmax operator should be the last operation in the CNN pipeline
* Softmax operation must be a separate operator (not specified as activation to another type of Keras operator) * Softmax operation must be a separate operator (not specified as activation to another type of Keras operator). Example of what works:
```
Activation ("softmax")
```
Example of what is NOT supported:
```
Dense(num_classes, activation="softmax")
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment