From: Steinar H. Gunderson Date: Thu, 8 Feb 2018 18:48:01 +0000 (+0100) Subject: Fix a syntax error. X-Git-Url: https://git.sesse.net/?p=voxel-flow;a=commitdiff_plain;h=586b7753362bf4b02fec6490dcefe4073f1af8bd Fix a syntax error. --- diff --git a/voxel_flow_train.py b/voxel_flow_train.py index 856ba85..dfe87b1 100755 --- a/voxel_flow_train.py +++ b/voxel_flow_train.py @@ -52,7 +52,7 @@ def train(dataset_frame1, dataset_frame2, dataset_frame3): # Prepare model. model = Voxel_flow_model() - prediction = model.inference(input_placeholder) d + prediction = model.inference(input_placeholder) # reproduction_loss, prior_loss = model.loss(prediction, target_placeholder) reproduction_loss = model.loss(prediction, target_placeholder) # total_loss = reproduction_loss + prior_loss