from torch.utils.data import Dataset
from PIL import Image
import os
class MyData(Dataset):
def __init__(self, ro
2021-11-02