Skip to content

Commit

Permalink
checking version
Browse files Browse the repository at this point in the history
  • Loading branch information
lrm22005 committed Oct 24, 2023
1 parent 6edf0c3 commit 07b28c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions project_1.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ def main():
is_linux = False # Set to True if running on Linux, False if on Windows
is_hpc = False # Set to True if running on hpc, False if on Windows

data_format = 'csv' # Choose 'csv' or 'png'
data_format = 'png' # Choose 'csv' or 'png'

data_path, labels_path, saving_path = get_data_paths(data_format, is_linux=is_linux, is_hpc=is_hpc)

Expand All @@ -327,7 +327,7 @@ def main():

# Visualize the correlation matrix
visualize_correlation_matrix(train_data, segment_names, subject_mode=True, num_subjects_to_visualize=None, save_path=saving_path)
visualize_correlation_matrix(train_data, segment_names, subject_mode=False, num_subjects_to_visualize=20, save_path=saving_path)
visualize_correlation_matrix(train_data, segment_names, subject_mode=False, num_subjects_to_visualize=None, save_path=saving_path)
# visualize_correlation_matrix(train_data, segment_names, subject_mode=False, num_subjects_to_visualize=None, save_path=saving_path)

# Perform MFVI for your data
Expand Down

0 comments on commit 07b28c3

Please sign in to comment.