Lab_01: Tensor Manipulation
PyTorch로 Tensor 생성하기1차원 Tensort = torch.FloatTensor([0,1,2,3,4,5,6])# tensor([0., 1., 2., 3., 4., 5., 6.]) 2차원 Tensort = torch.FloatTensor([[1, 2, 3], [4, 5, 6], [7, 8, 9], [10, 11, 12]])# tensor([[ 1., 2., 3.],# [ 4., 5., 6.],# [ 7., 8., 9.],# [10., 11., 12.]]) Multiplication vs Matrix Multiplicat..
2025. 1. 3.
[Visualization] LinePlot
In [11]:import numpy as npimport pandas as pdimport matplotlib as mplimport matplotlib.pyplot as plt기본적인 동작¶In [13]:x = np.linspace(0, 10, 100)In [19]:plt.plot(x, np.sin(x), '--');Matlb Style vs Object-oriented Style¶In [37]:plt.figure()plt.subplot(2, 1, 1) # 2행 1열로 나누어 1번에 그래프를 그린다.plt.plot(x, np.sin(x))plt.subplot(2, 1, 2)plt.plot(x, np.cos(x)) # 2행 1열로 나누어 2번에 그래프를 그린다.Out[37]:[]In [43]:fig, ..
2024. 11. 26.