Browse Source

Merge pull request #940 from Fiffers/patch-1

Fix Conv2dTranspose bias
pull/1234/head
Rinne GitHub 1 year ago
parent
commit
59b08cab05
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

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


Loading…
Cancel
Save