Skip to content
Snippets Groups Projects
Commit ba0d717a authored by stadtler1's avatar stadtler1
Browse files

a '=' was missing, Bing told me to insert it.

parent 2e9c78ae
No related branches found
No related tags found
No related merge requests found
Pipeline #44155 failed
......@@ -447,7 +447,7 @@ def main():
#Get prediction values
feed_dict = {input_ph: input_results[name] for name, input_ph in input_phs.items()}
gen_images = sess.run(model.outputs['gen_images'], feed_dict = feed_dict)#return [batchsize,seq_len,lat,lon,channel]
assert gen_images.shape[1] = sequence_length-1 #The generate images seq_len should be sequence_len -1, since the last one is not used for comparing with groud truth
assert gen_images.shape[1] == sequence_length-1 #The generate images seq_len should be sequence_len -1, since the last one is not used for comparing with groud truth
print("gen_images 20200822:",np.array(gen_images).shape)
#Loop in batch size
for i in range(args.batch_size):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment