jaroslav-hook

Results 2 issues of jaroslav-hook

### Description ILayer forwardLayer = keras.layers.LSTM(units: 10, activation: keras.activations.Sigmoid, return_sequences: true, go_backwards: false); ILayer backwardlayer = keras.layers.LSTM(units: 10, activation: keras.activations.Sigmoid, return_sequences: true, go_backwards: true); model.add(keras.layers.Bidirectional(forwardLayer, merge_mode: "sum", backward_layer: backwardlayer)); ###...

### Description ![crash](https://github.com/SciSharp/TensorFlow.NET/assets/95256987/e87af848-4aae-4d16-8524-96689d332b32) ![crash](https://github.com/SciSharp/TensorFlow.NET/assets/95256987/20dab1d0-2d54-419f-ba69-d9f629e137d3) ### Reproduction Steps using Tensorflow.Common.Types; using Tensorflow.Keras.ArgsDefinition; using Tensorflow.Keras.Utils; using Tensorflow.Keras; // namespace Tensorflow.Keras.Engine; // tryig out the tesor flow // https://www.w3computing.com/articles/deep-learning-csharp-tensorflow-neural-networks/ namespace Vt_Lin { class...