mirror of
https://github.com/sbrl/research-rainfallradar
synced 2024-11-22 09:13:01 +00:00
flip squeeze operator ordering
This commit is contained in:
parent
af26964c6a
commit
bb0258f5cd
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ def do_png(args, ai, dataset, model_code):
|
|||
rainfall, water = item
|
||||
|
||||
water_predict_batch = ai.embed(rainfall)
|
||||
water = tf.unstack(tf.squeeze(water), axis=0)
|
||||
water = tf.squeeze(tf.unstack(water, axis=0))
|
||||
|
||||
i_batch = 0
|
||||
for water_predict in water_predict_batch:
|
||||
|
|
Loading…
Reference in a new issue