Experiment - Forward pass computation
Problem:You have a simple neural network model in PyTorch that classifies images into 10 classes. The model is defined, but you want to understand how the forward pass works and verify that the output shape and values are correct.
Current Metrics:No training done yet. The model outputs raw scores (logits) for each class. Output shape is (batch_size, 10).
Issue:You are unsure if the forward pass is implemented correctly and if the output tensor shape and values make sense.