Experiment - Dataset class (custom datasets)
Problem:You want to train a PyTorch model on your own data, but the data is not in a ready-made format. You need to create a custom Dataset class to load and preprocess your data.
Current Metrics:No model training yet because data loading is incomplete.
Issue:Without a proper Dataset class, the DataLoader cannot fetch data correctly, so training cannot start.