Lily-Git-hub

Results 2 comments of Lily-Git-hub

Hi Nicolas, Please try this example: ```py import torch import torchvision import torch.nn.functional as F for i in range(2): image_data = torch.load('image_data.pt') resized_image_tensor = F.interpolate(image_data.unsqueeze(0), size=(2160, 3820), mode='bilinear', align_corners=False) image_data_resized...

> ```python > del data, image_data_encoded, resized_image_tensor, image_data_resized, image_data` > ``` Hi Nicolas, Did you remove the above line of code? The error occurs when not deleting used variables. Thanks!