rainfall_stats: formatting

This commit is contained in:
Starbeamrainbowlabs 2022-11-24 19:05:35 +00:00
parent 675c7a7448
commit 64d646bb13
Signed by: sbrl
GPG key ID: 1BE5172E637709C2

View file

@ -61,7 +61,7 @@ def run(args):
batch_stddev = tf.math.reduce_std(rainfall_flat)
batch_max = tf.math.reduce_max(rainfall_flat)
print("BATCH", "mean", batch_mean, "stddev", batch_stddev, "max", batch_max)
print("BATCH mean\t", batch_mean.numpy().list()[0], "stddev\t", batch_stddev.numpy().list()[0], "max\t", batch_max.numpy().list()[0])
calc_mean.append(batch_mean)
calc_stddev.append(batch_stddev)