mirror of
https://github.com/sbrl/research-rainfallradar
synced 2024-11-22 09:13:01 +00:00
ai: fixup
This commit is contained in:
parent
e4c95bc7e3
commit
cb3e1d3a23
1 changed files with 3 additions and 2 deletions
|
@ -37,8 +37,9 @@ def model_rainfallwater_contrastive(shape_rainfall, shape_water, feature_dim=204
|
||||||
)(input_water)
|
)(input_water)
|
||||||
|
|
||||||
|
|
||||||
final = LayerCheeseMultipleOut()([ rainfall, water ])
|
layer_final = LayerCheeseMultipleOut()
|
||||||
weight_temperature = final.weight_temperature
|
final = layer_final([ rainfall, water ])
|
||||||
|
weight_temperature = layer_final.weight_temperature
|
||||||
|
|
||||||
model = tf.keras.Model(
|
model = tf.keras.Model(
|
||||||
inputs = [ input_rainfall, input_water ],
|
inputs = [ input_rainfall, input_water ],
|
||||||
|
|
Loading…
Reference in a new issue