├── HCP_subject_ids.csv ├── Phenotypic_V1_0b_preprocessed1.csv ├── README.rst ├── aliases.py ├── connectome_matrices.py ├── downloader.py ├── mta_1_phenotypic_data.csv ├── my_estimators.py ├── my_palette.py ├── plot_predictions.py ├── predictions ├── ABIDE │ └── scores.csv ├── ACPI │ └── scores.csv ├── ADNI │ └── scores.csv ├── ADNIDOD │ └── scores.csv ├── COBRE │ └── scores.csv └── HCP │ └── scores.csv ├── run_prediction_on_abide.py ├── run_prediction_on_acpi.py ├── run_prediction_on_adni.py ├── run_prediction_on_adnidod.py ├── run_prediction_on_cobre.py ├── run_prediction_on_hcp1.py └── run_prediction_on_hcp2.py /HCP_subject_ids.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamalakerDadi/benchmark_rsfMRI_prediction/HEAD/HCP_subject_ids.csv -------------------------------------------------------------------------------- /Phenotypic_V1_0b_preprocessed1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamalakerDadi/benchmark_rsfMRI_prediction/HEAD/Phenotypic_V1_0b_preprocessed1.csv -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamalakerDadi/benchmark_rsfMRI_prediction/HEAD/README.rst -------------------------------------------------------------------------------- /aliases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamalakerDadi/benchmark_rsfMRI_prediction/HEAD/aliases.py -------------------------------------------------------------------------------- /connectome_matrices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamalakerDadi/benchmark_rsfMRI_prediction/HEAD/connectome_matrices.py -------------------------------------------------------------------------------- /downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamalakerDadi/benchmark_rsfMRI_prediction/HEAD/downloader.py -------------------------------------------------------------------------------- /mta_1_phenotypic_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamalakerDadi/benchmark_rsfMRI_prediction/HEAD/mta_1_phenotypic_data.csv -------------------------------------------------------------------------------- /my_estimators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamalakerDadi/benchmark_rsfMRI_prediction/HEAD/my_estimators.py -------------------------------------------------------------------------------- /my_palette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamalakerDadi/benchmark_rsfMRI_prediction/HEAD/my_palette.py -------------------------------------------------------------------------------- /plot_predictions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamalakerDadi/benchmark_rsfMRI_prediction/HEAD/plot_predictions.py -------------------------------------------------------------------------------- /predictions/ABIDE/scores.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamalakerDadi/benchmark_rsfMRI_prediction/HEAD/predictions/ABIDE/scores.csv -------------------------------------------------------------------------------- /predictions/ACPI/scores.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamalakerDadi/benchmark_rsfMRI_prediction/HEAD/predictions/ACPI/scores.csv -------------------------------------------------------------------------------- /predictions/ADNI/scores.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamalakerDadi/benchmark_rsfMRI_prediction/HEAD/predictions/ADNI/scores.csv -------------------------------------------------------------------------------- /predictions/ADNIDOD/scores.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamalakerDadi/benchmark_rsfMRI_prediction/HEAD/predictions/ADNIDOD/scores.csv -------------------------------------------------------------------------------- /predictions/COBRE/scores.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamalakerDadi/benchmark_rsfMRI_prediction/HEAD/predictions/COBRE/scores.csv -------------------------------------------------------------------------------- /predictions/HCP/scores.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamalakerDadi/benchmark_rsfMRI_prediction/HEAD/predictions/HCP/scores.csv -------------------------------------------------------------------------------- /run_prediction_on_abide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamalakerDadi/benchmark_rsfMRI_prediction/HEAD/run_prediction_on_abide.py -------------------------------------------------------------------------------- /run_prediction_on_acpi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamalakerDadi/benchmark_rsfMRI_prediction/HEAD/run_prediction_on_acpi.py -------------------------------------------------------------------------------- /run_prediction_on_adni.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamalakerDadi/benchmark_rsfMRI_prediction/HEAD/run_prediction_on_adni.py -------------------------------------------------------------------------------- /run_prediction_on_adnidod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamalakerDadi/benchmark_rsfMRI_prediction/HEAD/run_prediction_on_adnidod.py -------------------------------------------------------------------------------- /run_prediction_on_cobre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamalakerDadi/benchmark_rsfMRI_prediction/HEAD/run_prediction_on_cobre.py -------------------------------------------------------------------------------- /run_prediction_on_hcp1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamalakerDadi/benchmark_rsfMRI_prediction/HEAD/run_prediction_on_hcp1.py -------------------------------------------------------------------------------- /run_prediction_on_hcp2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamalakerDadi/benchmark_rsfMRI_prediction/HEAD/run_prediction_on_hcp2.py --------------------------------------------------------------------------------