You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi ! I just load the pretrained vqgan, and reconstruct the input as below, but the backgound is noisy and the forground is blur. Is thre any thing wrong in my code?
`
images, labels = batch["image"], batch["label"]
batch_size = images.shape[0]
times = [4, 9, 14, 19]
outputs = []
# 移除批量和通道维度,得到 (96, 96, 96)
ct_image_np = images.squeeze().cpu().numpy().astype(np.float32)
Hi ! I just load the pretrained vqgan, and reconstruct the input as below, but the backgound is noisy and the forground is blur. Is thre any thing wrong in my code?
`
images, labels = batch["image"], batch["label"]
batch_size = images.shape[0]
times = [4, 9, 14, 19]
outputs = []
# 移除批量和通道维度,得到 (96, 96, 96)
ct_image_np = images.squeeze().cpu().numpy().astype(np.float32)
`
The text was updated successfully, but these errors were encountered: