From dec1f666edf0858acee990701ea601376f756435 Mon Sep 17 00:00:00 2001 From: Justin <605492+justinpinkney@users.noreply.github.com> Date: Tue, 12 May 2020 08:55:44 +0100 Subject: [PATCH] fix prepforplot typo --- code/+p2p/+vis/TrainingPlot.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/+p2p/+vis/TrainingPlot.m b/code/+p2p/+vis/TrainingPlot.m index da07af3..49a5c1e 100644 --- a/code/+p2p/+vis/TrainingPlot.m +++ b/code/+p2p/+vis/TrainingPlot.m @@ -60,7 +60,7 @@ function initImages(obj) function updateImages(obj, generator) output = tanh(generator.forward(obj.ExampleInputs)); - displayIm = obj.PrepForPlot(output); + displayIm = obj.prepForPlot(output); obj.OutputsIm.CData = imtile(displayIm); end @@ -113,4 +113,4 @@ function updateLines(obj, epoch, iteration, gLoss, lossL1, ganLoss, dLoss) end end end -end \ No newline at end of file +end