Skip to content

Commit

Permalink
Merge pull request #940 from Fiffers/patch-1
Browse files Browse the repository at this point in the history
Fix Conv2dTranspose bias
  • Loading branch information
AsakusaRinne authored Nov 10, 2023
2 parents d020897 + 9412729 commit 59b08ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TensorFlowNET.Keras/Layers/LayersApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ public ILayer Conv2DTranspose(int filters,
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,
Expand Down

0 comments on commit 59b08ca

Please sign in to comment.