# هذا من اجل تحويل المصفوفه من النوع تنسور الي مصفوفه نامباي عاديه # Convert a torch tensor to a numpy array x = np.array([[1, 2], [3, 4.]]) x # Convert the numpy array to a torch tensor. y = torch.from_numpy(x) y z = y.numpy() z