mirror of
https://github.com/sbrl/research-rainfallradar
synced 2024-11-22 01:12:59 +00:00
fixup
This commit is contained in:
parent
fad3313ede
commit
279e27c898
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ class RainfallWaterContraster(object):
|
|||
i_batch = -1
|
||||
for batch in dataset:
|
||||
i_batch += 1
|
||||
result_batch = self.model(batch[0]) # ((rainfall, water), dummy_label)
|
||||
result_batch = self.model_predict(batch[0]) # ((rainfall, water), dummy_label)
|
||||
rainfall, water = tf.unstack(result_batch, axis=-2)
|
||||
|
||||
rainfall = tf.unstack(rainfall, axis=0)
|
||||
|
|
Loading…
Reference in a new issue