Add files via upload

This commit is contained in:
David Rotermund 2023-07-28 00:11:26 +02:00 committed by GitHub
parent d9bc0ff824
commit a564b10114
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -225,7 +225,7 @@ def make_cnn(
temp_image = cnn[layer_counter](temp_image) temp_image = cnn[layer_counter](temp_image)
logger.info( logger.info(
( (
f"After layer {layer_counter}: {int(temp_image.shape[1])}, " f"After layer {layer_counter} (Softmax Power Layer): {int(temp_image.shape[1])}, "
f"{int(temp_image.shape[2])}, " f"{int(temp_image.shape[2])}, "
f"{int(temp_image.shape[3])}, " f"{int(temp_image.shape[3])}, "
f"train bias: {cnn[-1].train_bias}, " f"train bias: {cnn[-1].train_bias}, "