Spaces:
Running
Running
Update pages/3_WithExercises.py
Browse files- 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
|
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
|