-
Notifications
You must be signed in to change notification settings - Fork 0
Current Limitations of nn4mc
Sarah Aguasvivas edited this page Jan 20, 2022
·
6 revisions
- Models need to be Keras
Sequential()
models. We're currently working on parsing for Keras Functional API models and also ONNX models. - Activations ought to be performed at the layer, not as a separate layer:
instead of:
...
model.add(Conv1D(....))
model.add(Activation('relu'))
do:
model.add(Conv1D(...., activation = 'relu'))
- Dense
- Conv1D
- Conv2D
- MaxPooling1D
- MaxPooling2D
- GRU
- Keras Functional API Parser
- ONNX Parser
- simpleRNN
- LSTM