Browse Source

Fix Conv2dTranspose bias

Conv2dTranspose defaults to have use_bias = true but currently throws a not implemented exception when the parameter is true.
pull/940/head
Steven GitHub 3 years ago
parent
commit
9412729ca9
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/TensorFlowNET.Keras/Layers/LayersApi.cs

+ 1
- 1
src/TensorFlowNET.Keras/Layers/LayersApi.cs View File

@@ -235,7 +235,7 @@ namespace Tensorflow.Keras.Layers
string data_format = null, string data_format = null,
Shape dilation_rate = null, Shape dilation_rate = null,
string activation = null, string activation = null,
bool use_bias = true,
bool use_bias = false,
string kernel_initializer = null, string kernel_initializer = null,
string bias_initializer = null, string bias_initializer = null,
string kernel_regularizer = null, string kernel_regularizer = null,


Loading…
Cancel
Save