diff --git a/examples/eg002r__multimodal_simulation.py b/examples/eg002r__multimodal_simulation.py index 52c18d1a..70ff9730 100644 --- a/examples/eg002r__multimodal_simulation.py +++ b/examples/eg002r__multimodal_simulation.py @@ -198,7 +198,7 @@ def loss(self, simData, empData = None, returnLossComponents = False): # Model Simulation # --------------------------------------------------- # -F.simulate(u = 0, numTP = randTS1.length) +F.evaluate(u=0, empRec=randTS1, TPperWindow=TPperWindow , base_window_num=2, transient_num: int = 10) # %% @@ -234,7 +234,7 @@ def loss(self, simData, empData = None, returnLossComponents = False): # Plots of BOLD FC # -sim_FC = np.corrcoef(F.lastRec['bold'].npTS()[:,skip_trans:]) +"""sim_FC = np.corrcoef(F.lastRec['bold'].npTS()[:,skip_trans:]) plt.figure(figsize = (8, 8)) plt.title("Simulated BOLD FC: After Training") @@ -296,4 +296,4 @@ def loss(self, simData, empData = None, returnLossComponents = False): plt.figure(figsize = (8, 8)) plt.title("Simulated BOLD FC: After Training") mask = np.eye(num_regions) -sns.heatmap(sim_FC, mask = mask, center=0, cmap='RdBu_r', vmin=-1.0, vmax = 1.0) \ No newline at end of file +sns.heatmap(sim_FC, mask = mask, center=0, cmap='RdBu_r', vmin=-1.0, vmax = 1.0)""" \ No newline at end of file