eaglelandsonce commited on
Commit
1ff124b
·
verified ·
1 Parent(s): 217480c

Update pages/3_WithExercises.py

Browse files
Files changed (1) hide show
  1. pages/3_WithExercises.py +1 -1
pages/3_WithExercises.py CHANGED
@@ -122,7 +122,7 @@ tensor2 = torch.tensor([[5, 6], [7, 8]])
122
 
123
  # Performing matrix multiplication using matmul
124
  matmul_result = torch.matmul(tensor1, tensor2)
125
- print("Matrix multiplication result:\n", matmul_result)
126
 
127
  # Broadcasting example
128
  # Broadcasting allows tensor3 and tensor4 to be added despite their different shapes
 
122
 
123
  # Performing matrix multiplication using matmul
124
  matmul_result = torch.matmul(tensor1, tensor2)
125
+ print("Matrix multiplication result:", matmul_result)
126
 
127
  # Broadcasting example
128
  # Broadcasting allows tensor3 and tensor4 to be added despite their different shapes