Skip to content

Commit

Permalink
bugfix resunet-a
Browse files Browse the repository at this point in the history
  • Loading branch information
yingkaisha committed Jun 13, 2021
1 parent 75f717d commit 2383db7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keras_unet_collection/_model_resunet_a_2d.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ def resunet_a_2d(input_size, filter_num, dilation_num, n_labels,

OUT = CONV_output(X, n_labels, kernel_size=1, activation=output_activation, name='{}_output'.format(name))

model = Model([IN], [OUT,])
model = Model([IN], [OUT,], name='{}_model'.format(name))

return model

0 comments on commit 2383db7

Please sign in to comment.