Skip to content

Commit 9412729

Browse files
author
Steven
authored
Fix Conv2dTranspose bias
Conv2dTranspose defaults to have use_bias = true but currently throws a not implemented exception when the parameter is true.
1 parent ce3ddb2 commit 9412729

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/TensorFlowNET.Keras/Layers/LayersApi.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ public Conv2DTranspose Conv2DTranspose(int filters,
235235
string data_format = null,
236236
Shape dilation_rate = null,
237237
string activation = null,
238-
bool use_bias = true,
238+
bool use_bias = false,
239239
string kernel_initializer = null,
240240
string bias_initializer = null,
241241
string kernel_regularizer = null,

0 commit comments

Comments
 (0)