device = torch.device('cuda')ifargs.ctx =='gpu'else'cpu'# gray box settingadj, features, labels = preprocess(adj, features, labels, preprocess_adj=False, sparse=True, device=device)# Setup victim modelvictim_model = GCN(nfeat=features.shape[1], nclass=labels.max().item()+1, nhid=...