diff --git a/src/TensorFlowNET.Core/Keras/Layers/ILayersApi.cs b/src/TensorFlowNET.Core/Keras/Layers/ILayersApi.cs index 6a29f9e5..b4422fb1 100644 --- a/src/TensorFlowNET.Core/Keras/Layers/ILayersApi.cs +++ b/src/TensorFlowNET.Core/Keras/Layers/ILayersApi.cs @@ -104,6 +104,15 @@ namespace Tensorflow.Keras.Layers bool use_bias = true, IInitializer bias_initializer = null, Shape input_shape = null); + + public ILayer Dense(int units, + string activation = null, + IInitializer kernel_initializer = null, + bool use_bias = true, + IInitializer bias_initializer = null, + IRegularizer kernel_regularizer = null, + IRegularizer bias_regularizer = null, + Shape input_shape = null); public ILayer Dropout(float rate, Shape noise_shape = null, int? seed = null);