├── .gitignore ├── LICENSE ├── README.md ├── data ├── .gitkeepme └── abide │ └── Phenotypic_V1_0b_preprocessed1_cleaned.csv ├── figures └── overview_analysis.png ├── helperfunctions.py ├── notebooks ├── multiverse_analysis_classification.ipynb ├── multiverse_analysis_classification.py ├── multiverse_analysis_regression.ipynb └── multiverse_analysis_regression.py ├── output ├── .gitkeepme ├── abide │ ├── abide_space.pckl │ ├── embeddings.pckl │ └── predictedAcc.pckl └── age │ ├── ModelsResults.p │ ├── embeddings.p │ ├── predictedAcc.pckl │ └── repetitions_results.p └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | 3 | output/* 4 | figures/* 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mind-the-Pineapple/into-the-multiverse/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mind-the-Pineapple/into-the-multiverse/HEAD/README.md -------------------------------------------------------------------------------- /data/.gitkeepme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/abide/Phenotypic_V1_0b_preprocessed1_cleaned.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mind-the-Pineapple/into-the-multiverse/HEAD/data/abide/Phenotypic_V1_0b_preprocessed1_cleaned.csv -------------------------------------------------------------------------------- /figures/overview_analysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mind-the-Pineapple/into-the-multiverse/HEAD/figures/overview_analysis.png -------------------------------------------------------------------------------- /helperfunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mind-the-Pineapple/into-the-multiverse/HEAD/helperfunctions.py -------------------------------------------------------------------------------- /notebooks/multiverse_analysis_classification.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mind-the-Pineapple/into-the-multiverse/HEAD/notebooks/multiverse_analysis_classification.ipynb -------------------------------------------------------------------------------- /notebooks/multiverse_analysis_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mind-the-Pineapple/into-the-multiverse/HEAD/notebooks/multiverse_analysis_classification.py -------------------------------------------------------------------------------- /notebooks/multiverse_analysis_regression.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mind-the-Pineapple/into-the-multiverse/HEAD/notebooks/multiverse_analysis_regression.ipynb -------------------------------------------------------------------------------- /notebooks/multiverse_analysis_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mind-the-Pineapple/into-the-multiverse/HEAD/notebooks/multiverse_analysis_regression.py -------------------------------------------------------------------------------- /output/.gitkeepme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /output/abide/abide_space.pckl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mind-the-Pineapple/into-the-multiverse/HEAD/output/abide/abide_space.pckl -------------------------------------------------------------------------------- /output/abide/embeddings.pckl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mind-the-Pineapple/into-the-multiverse/HEAD/output/abide/embeddings.pckl -------------------------------------------------------------------------------- /output/abide/predictedAcc.pckl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mind-the-Pineapple/into-the-multiverse/HEAD/output/abide/predictedAcc.pckl -------------------------------------------------------------------------------- /output/age/ModelsResults.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mind-the-Pineapple/into-the-multiverse/HEAD/output/age/ModelsResults.p -------------------------------------------------------------------------------- /output/age/embeddings.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mind-the-Pineapple/into-the-multiverse/HEAD/output/age/embeddings.p -------------------------------------------------------------------------------- /output/age/predictedAcc.pckl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mind-the-Pineapple/into-the-multiverse/HEAD/output/age/predictedAcc.pckl -------------------------------------------------------------------------------- /output/age/repetitions_results.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mind-the-Pineapple/into-the-multiverse/HEAD/output/age/repetitions_results.p -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mind-the-Pineapple/into-the-multiverse/HEAD/requirements.txt --------------------------------------------------------------------------------