Skip to content
This repository was archived by the owner on Feb 7, 2025. It is now read-only.

Commit 958a70c

Browse files
committed
Removed verbose printing during setup
1 parent 8e76638 commit 958a70c

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

generative/networks/nets/patchgan_discriminator.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,6 @@ def __init__(
8787
pool = get_pool_layer(
8888
(pooling_method, {"kernel_size": kernel_size, "stride": 2}), spatial_dims=spatial_dims
8989
)
90-
print(
91-
f"Initialising {spatial_dims}D MultiScalePatchDiscriminator with {self.num_d} discriminators, {self.num_layers_d} layers and pooling method {pool.__class__.__name__}."
92-
)
9390
self.num_channels = num_channels
9491
self.padding = tuple([int((kernel_size - 1) / 2)] * spatial_dims)
9592
for i_ in range(self.num_d):

0 commit comments

Comments
 (0)