Skip to content

Commit

Permalink
try fix
Browse files Browse the repository at this point in the history
  • Loading branch information
OnnoKampman committed Mar 22, 2024
1 parent 6c40347 commit 13d46df
Showing 1 changed file with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
import numpy as np
import pandas as pd

from configs.configs import get_config_dict
from helpers.array_operations import reconstruct_symmetric_summary_measure_matrix_from_tril
from helpers.hcp import get_human_connectome_project_subjects
from ......configs.configs import get_config_dict
from ....helpers.array_operations import reconstruct_symmetric_summary_measure_matrix_from_tril
from .....helpers.hcp import get_human_connectome_project_subjects


if __name__ == "__main__":
Expand Down Expand Up @@ -51,10 +51,11 @@
data_split, experiment_dimensionality, metric, model_name
)
for i_subject, subject_filename in enumerate(all_subjects_list):
print(f'\n> SUMMARY MEASURE: {tvfc_summary_measure:s}')
print(f'> MODEL NAME: {model_name:s}')
print(f'> SCAN ID: {scan_id:d}')
print(f'> SUBJECT {i_subject+1: 3d} / {n_subjects:d}: {subject_filename:s}')
print('')
logging.info(f'> SUMMARY MEASURE: {tvfc_summary_measure:s}')
logging.info(f'> MODEL NAME: {model_name:s}')
logging.info(f'> SCAN ID: {scan_id:d}')
logging.info(f'> SUBJECT {i_subject+1: 3d} / {n_subjects:d}: {subject_filename:s}')

# Load TVFC estimates - some may be missing.
tvfc_estimates_filepath = os.path.join(
Expand Down

0 comments on commit 13d46df

Please sign in to comment.