Experiment - Tensor creation (torch.tensor, zeros, ones, rand)
Problem:You want to create different types of tensors in PyTorch for a simple neural network input. Currently, you only use torch.tensor with fixed values.
Current Metrics:You can create tensors with torch.tensor but struggle to create tensors filled with zeros, ones, or random values easily.
Issue:Limited tensor creation methods slow down experimentation and data preparation.