Hello Jupyter¶
In [3]:
Copied!
print("Hello World!")
print("Hello World!")
Hello World!
In [ ]:
Copied!
import torch
import matplotlib.pyplot as plt
# Create a random 50x50 matrix using PyTorch
matrix = torch.randn(50, 50)
plt.imshow(matrix, cmap='viridis')
plt.colorbar()
plt.title("Random 50x50 Matrix (PyTorch)")
plt.show()
import torch
import matplotlib.pyplot as plt
# Create a random 50x50 matrix using PyTorch
matrix = torch.randn(50, 50)
plt.imshow(matrix, cmap='viridis')
plt.colorbar()
plt.title("Random 50x50 Matrix (PyTorch)")
plt.show()