diff --git a/code/data.py b/code/data.py
index 235cae1b79246ff4460c181c545502637db93531..618d6801b550ae97119c73796110677e491fd034 100644
--- a/code/data.py
+++ b/code/data.py
@@ -122,12 +122,12 @@ class TestDataModule(pl.LightningDataModule):
             # Load the pyramid/00 per file
 
             #For JSC Training.
-            pli_path = '/p/fastdata/pli/Private/oberstrass1/datasets/vervet1818/vervet1818-stained/data/aligned/pli/NTransmittance'
-            cyto_path = '/p/fastdata/pli/Private/oberstrass1/datasets/vervet1818/vervet1818-stained/data/aligned/stained'
+            #pli_path = '/p/fastdata/pli/Private/oberstrass1/datasets/vervet1818/vervet1818-stained/data/aligned/pli/NTransmittance'
+            #cyto_path = '/p/fastdata/pli/Private/oberstrass1/datasets/vervet1818/vervet1818-stained/data/aligned/stained'
 
             #For Local Machine Training.
-            #pli_path = '/media/tushar/A2246889246861F1/Master Thesis MAIA/example-data/pli/NTransmittance'
-            #cyto_path = '/media/tushar/A2246889246861F1/Master Thesis MAIA/example-data/stained'
+            pli_path = '/media/tushar/A2246889246861F1/Master Thesis MAIA/example-data/pli/NTransmittance'
+            cyto_path = '/media/tushar/A2246889246861F1/Master Thesis MAIA/example-data/stained'
 
             pli_files_list = [file for file in os.listdir(pli_path) if
                               file.endswith(('.h5', '.hdf', '.h4', '.hdf4', '.he2', '.hdf5', '.he5'))]
diff --git a/code/model.py b/code/model.py
index 04cd10aac18ce358fe840fdd509df41f8fd53917..e6be384466f4fc45d6841fe8af238ee4927daa11 100644
--- a/code/model.py
+++ b/code/model.py
@@ -52,6 +52,9 @@ class TestModule(pl.LightningModule):
         cyto_imag_generated = self.forward(batch['pli_image'])
         loss = self.loss_f(cyto_imag_generated, batch['cyto_image'])
         self.log("val_loss", loss)
+        batch['pli_image'] = batch['pli_image'] + 0.5
+        batch['cyto_image'] = batch['cyto_image'] + 0.5
+        cyto_imag_generated = cyto_imag_generated +0.5
         if batch_idx == 0:
             grid = make_grid([batch['pli_image'][0], batch['cyto_image'][0], cyto_imag_generated[0]])
             self.logger.experiment.add_image('Grid_images', grid, self.current_epoch, dataformats="CHW")