Paper: https://ieeexplore.ieee.org/document/9490307
In practice, multimodal images may be incomplete since PET is often missing due to high financial costs or availability. Most of the existing methods simply excluded subjects with missing data, which unfortunately reduced the sample size. To address these problems, we propose a task-induced pyramid and attention generative adversarial network (TPA-GAN) for imputation of multimodal brain images. With the complete multimodal images, we build a pathwise transfer dense convolution network (PT-DCN) to gradually learn and combine the multimodal features for final disease classification.
This script need no installation, but has the following requirements:
Import libraries
import os
import cv2
import torch
import numpy as np
from torch import nn
from torch import optim
from torch.nn import functional as F
from torch.autograd import Variable
from sklearn.metrics import roc_curve, auc
import math
import time
Run the following code,we test the models after each epoch of training process. No independent test program is required, we also provide。
train_TPA_GAN.py
Run the following code,we test the models after each epoch of training process. No independent test program is required, we also provide。
train_PT_DCN.py
Next project, We will provide clear pre-processing procedures of the neuroimages from ADNI database, and release our pre-processed data.