mirror of
https://github.com/sbrl/research-rainfallradar
synced 2024-11-22 09:13:01 +00:00
debug logging
This commit is contained in:
parent
12c77e128d
commit
5846828f9e
1 changed files with 4 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
||||||
from pickletools import optimize
|
|
||||||
|
from loguru import logger
|
||||||
import tensorflow as tf
|
import tensorflow as tf
|
||||||
|
|
||||||
from .components.LayerContrastiveEncoder import LayerContrastiveEncoder
|
from .components.LayerContrastiveEncoder import LayerContrastiveEncoder
|
||||||
|
@ -6,6 +7,8 @@ from .components.LayerCheeseMultipleOut import LayerCheeseMultipleOut
|
||||||
from .components.LossContrastive import LossContrastive
|
from .components.LossContrastive import LossContrastive
|
||||||
|
|
||||||
def model_rainfallwater_contrastive(shape_rainfall, shape_water, feature_dim=200):
|
def model_rainfallwater_contrastive(shape_rainfall, shape_water, feature_dim=200):
|
||||||
|
logger.info(shape_rainfall)
|
||||||
|
logger.info(shape_water)
|
||||||
rainfall_width, rainfall_height, rainfall_channels = shape_rainfall
|
rainfall_width, rainfall_height, rainfall_channels = shape_rainfall
|
||||||
water_width, water_height, water_channels = shape_water
|
water_width, water_height, water_channels = shape_water
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue