├── .gitignore ├── README.md ├── evaluation ├── README.md ├── calculate_fmri_profile_corr.py ├── calculate_profile_nc_threshold.py ├── calculate_profile_noise_ceiling.py └── normalized_profile_correlation.ipynb ├── image_reconstruction ├── README.md ├── data │ ├── act_range │ │ ├── 1x │ │ │ ├── conv3.txt │ │ │ ├── conv5.txt │ │ │ ├── fc6.txt │ │ │ ├── fc7.txt │ │ │ ├── fc8.txt │ │ │ └── pool5.txt │ │ ├── 2x │ │ │ ├── conv3.txt │ │ │ ├── conv5.txt │ │ │ ├── fc6.txt │ │ │ ├── fc7.txt │ │ │ ├── fc8.txt │ │ │ └── pool5.txt │ │ ├── 3x │ │ │ ├── conv1.txt │ │ │ ├── conv2.txt │ │ │ ├── conv3.txt │ │ │ ├── conv4.txt │ │ │ ├── conv5.txt │ │ │ ├── fc6.txt │ │ │ ├── fc7.txt │ │ │ └── fc8.txt │ │ └── README.md │ ├── estimated_vgg19_cnn_feat_std.mat │ └── ilsvrc_2012_mean.npy ├── net │ └── README.md ├── recon_image_artificialImage_VGG19_NoDGN_LBFGS.py └── recon_image_naturalImage_VGG19_DGN_GD.py ├── optimal_transport ├── OT_predict_feat.py ├── OT_training.py └── params │ └── converter_params.csv ├── pretrained_models └── README.md ├── procrustes ├── Procrustes_predict_feat.py ├── Procrustes_training.py └── params │ └── converter_params.csv ├── ridge_ncc ├── ncc_predict_feat.py ├── ncc_training.py └── params │ ├── converter_params.csv │ └── converter_params_1conversion.csv └── template_based_pairwise_transformation ├── HA_predict_feat.py ├── HA_training.py ├── params └── converter_params.csv └── pyhyperalignment.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/README.md -------------------------------------------------------------------------------- /evaluation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/evaluation/README.md -------------------------------------------------------------------------------- /evaluation/calculate_fmri_profile_corr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/evaluation/calculate_fmri_profile_corr.py -------------------------------------------------------------------------------- /evaluation/calculate_profile_nc_threshold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/evaluation/calculate_profile_nc_threshold.py -------------------------------------------------------------------------------- /evaluation/calculate_profile_noise_ceiling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/evaluation/calculate_profile_noise_ceiling.py -------------------------------------------------------------------------------- /evaluation/normalized_profile_correlation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/evaluation/normalized_profile_correlation.ipynb -------------------------------------------------------------------------------- /image_reconstruction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/image_reconstruction/README.md -------------------------------------------------------------------------------- /image_reconstruction/data/act_range/1x/conv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/image_reconstruction/data/act_range/1x/conv3.txt -------------------------------------------------------------------------------- /image_reconstruction/data/act_range/1x/conv5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/image_reconstruction/data/act_range/1x/conv5.txt -------------------------------------------------------------------------------- /image_reconstruction/data/act_range/1x/fc6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/image_reconstruction/data/act_range/1x/fc6.txt -------------------------------------------------------------------------------- /image_reconstruction/data/act_range/1x/fc7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/image_reconstruction/data/act_range/1x/fc7.txt -------------------------------------------------------------------------------- /image_reconstruction/data/act_range/1x/fc8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/image_reconstruction/data/act_range/1x/fc8.txt -------------------------------------------------------------------------------- /image_reconstruction/data/act_range/1x/pool5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/image_reconstruction/data/act_range/1x/pool5.txt -------------------------------------------------------------------------------- /image_reconstruction/data/act_range/2x/conv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/image_reconstruction/data/act_range/2x/conv3.txt -------------------------------------------------------------------------------- /image_reconstruction/data/act_range/2x/conv5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/image_reconstruction/data/act_range/2x/conv5.txt -------------------------------------------------------------------------------- /image_reconstruction/data/act_range/2x/fc6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/image_reconstruction/data/act_range/2x/fc6.txt -------------------------------------------------------------------------------- /image_reconstruction/data/act_range/2x/fc7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/image_reconstruction/data/act_range/2x/fc7.txt -------------------------------------------------------------------------------- /image_reconstruction/data/act_range/2x/fc8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/image_reconstruction/data/act_range/2x/fc8.txt -------------------------------------------------------------------------------- /image_reconstruction/data/act_range/2x/pool5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/image_reconstruction/data/act_range/2x/pool5.txt -------------------------------------------------------------------------------- /image_reconstruction/data/act_range/3x/conv1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/image_reconstruction/data/act_range/3x/conv1.txt -------------------------------------------------------------------------------- /image_reconstruction/data/act_range/3x/conv2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/image_reconstruction/data/act_range/3x/conv2.txt -------------------------------------------------------------------------------- /image_reconstruction/data/act_range/3x/conv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/image_reconstruction/data/act_range/3x/conv3.txt -------------------------------------------------------------------------------- /image_reconstruction/data/act_range/3x/conv4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/image_reconstruction/data/act_range/3x/conv4.txt -------------------------------------------------------------------------------- /image_reconstruction/data/act_range/3x/conv5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/image_reconstruction/data/act_range/3x/conv5.txt -------------------------------------------------------------------------------- /image_reconstruction/data/act_range/3x/fc6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/image_reconstruction/data/act_range/3x/fc6.txt -------------------------------------------------------------------------------- /image_reconstruction/data/act_range/3x/fc7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/image_reconstruction/data/act_range/3x/fc7.txt -------------------------------------------------------------------------------- /image_reconstruction/data/act_range/3x/fc8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/image_reconstruction/data/act_range/3x/fc8.txt -------------------------------------------------------------------------------- /image_reconstruction/data/act_range/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/image_reconstruction/data/act_range/README.md -------------------------------------------------------------------------------- /image_reconstruction/data/estimated_vgg19_cnn_feat_std.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/image_reconstruction/data/estimated_vgg19_cnn_feat_std.mat -------------------------------------------------------------------------------- /image_reconstruction/data/ilsvrc_2012_mean.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/image_reconstruction/data/ilsvrc_2012_mean.npy -------------------------------------------------------------------------------- /image_reconstruction/net/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/image_reconstruction/net/README.md -------------------------------------------------------------------------------- /image_reconstruction/recon_image_artificialImage_VGG19_NoDGN_LBFGS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/image_reconstruction/recon_image_artificialImage_VGG19_NoDGN_LBFGS.py -------------------------------------------------------------------------------- /image_reconstruction/recon_image_naturalImage_VGG19_DGN_GD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/image_reconstruction/recon_image_naturalImage_VGG19_DGN_GD.py -------------------------------------------------------------------------------- /optimal_transport/OT_predict_feat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/optimal_transport/OT_predict_feat.py -------------------------------------------------------------------------------- /optimal_transport/OT_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/optimal_transport/OT_training.py -------------------------------------------------------------------------------- /optimal_transport/params/converter_params.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/optimal_transport/params/converter_params.csv -------------------------------------------------------------------------------- /pretrained_models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/pretrained_models/README.md -------------------------------------------------------------------------------- /procrustes/Procrustes_predict_feat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/procrustes/Procrustes_predict_feat.py -------------------------------------------------------------------------------- /procrustes/Procrustes_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/procrustes/Procrustes_training.py -------------------------------------------------------------------------------- /procrustes/params/converter_params.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/procrustes/params/converter_params.csv -------------------------------------------------------------------------------- /ridge_ncc/ncc_predict_feat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/ridge_ncc/ncc_predict_feat.py -------------------------------------------------------------------------------- /ridge_ncc/ncc_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/ridge_ncc/ncc_training.py -------------------------------------------------------------------------------- /ridge_ncc/params/converter_params.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/ridge_ncc/params/converter_params.csv -------------------------------------------------------------------------------- /ridge_ncc/params/converter_params_1conversion.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/ridge_ncc/params/converter_params_1conversion.csv -------------------------------------------------------------------------------- /template_based_pairwise_transformation/HA_predict_feat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/template_based_pairwise_transformation/HA_predict_feat.py -------------------------------------------------------------------------------- /template_based_pairwise_transformation/HA_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/template_based_pairwise_transformation/HA_training.py -------------------------------------------------------------------------------- /template_based_pairwise_transformation/params/converter_params.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/template_based_pairwise_transformation/params/converter_params.csv -------------------------------------------------------------------------------- /template_based_pairwise_transformation/pyhyperalignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KamitaniLab/InterIndividualDeepImageReconstruction/HEAD/template_based_pairwise_transformation/pyhyperalignment.py --------------------------------------------------------------------------------