mirror of
https://github.com/sbrl/research-rainfallradar
synced 2024-11-22 01:12:59 +00:00
moar logging
This commit is contained in:
parent
c2fcb3b954
commit
2663123407
1 changed files with 5 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
|||
import tensorflow as tf
|
||||
from loguru import logger
|
||||
|
||||
# from tensorflow.keras.applications.resnet_v2 import ResNet50V2
|
||||
from ..helpers.summarywriter import summarylogger
|
||||
|
@ -21,6 +22,10 @@ class LayerContrastiveEncoder(tf.keras.layers.Layer):
|
|||
"""
|
||||
super(LayerContrastiveEncoder, self).__init__(**kwargs)
|
||||
|
||||
print(f"input_width: {input_width}")
|
||||
print(f"input_height: {input_height}")
|
||||
print(f"channels: {channels}")
|
||||
|
||||
self.param_input_width = input_width
|
||||
self.param_input_height = input_height
|
||||
self.param_channels = channels
|
||||
|
|
Loading…
Reference in a new issue