<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
張量是一種特殊的資料結構,與陣列和矩陣非常相似。在 PyTorch 中,我們使用張量對模型的輸入和輸出以及模型的引數進行編碼。
張量類似於NumPy 的ndarray,除了張量可以在 GPU 或其他硬體加速器上執行。事實上,張量和 NumPy 陣列通常可以共用相同的底層記憶體,從而無需複製資料(請參閱Bridge with NumPy)。張量也針對自動微分進行了優化(我們將在稍後的Autograd 部分中看到更多相關內容)。如果您熟悉 ndarrays,那麼您對 Tensor API 會很快熟悉。
# 匯入需要的包 import torch import numpy as np
張量可以以各種方式初始化。請看以下範例:
張量可以直接從列表資料中建立。資料型別是自動推斷的。
# 建立python list 資料 data = [[1, 2],[3, 4]] # 初始化張量 x_data = torch.tensor(data)
張量可以從 NumPy 陣列建立(反之亦然 - 請參閱Bridge with NumPy)。
# 建立numpy 陣列 np_array = np.array(data) # from_numpy初始化張量 x_np = torch.from_numpy(np_array)
新張量保留原張量的屬性(形狀shape、資料型別datatype),除非顯式覆蓋。
# 建立和x_data (形狀shape、資料型別datatype)一樣的張量並全部初始化為1 x_ones = torch.ones_like(x_data) # retains the properties of x_data print(f"Ones Tensor: n {x_ones} n") # 建立和x_data (形狀shape)一樣的張量並隨機初始化,覆蓋其資料型別datatype 為torch.float x_rand = torch.rand_like(x_data, dtype=torch.float) # overrides the datatype of x_data print(f"Random Tensor: n {x_rand} n")
Ones Tensor: tensor([[1, 1], [1, 1]]) Random Tensor: tensor([[0.5001, 0.2973], [0.8085, 0.9395]])
shape
是張量維度的元組。在下面的函數中,它決定了輸出張量的維度。
# 定義形狀元組 shape = (2,3,) # 隨機初始化 rand_tensor = torch.rand(shape) # 全部初始化為1 ones_tensor = torch.ones(shape) # 全部初始化為0 zeros_tensor = torch.zeros(shape) print(f"Random Tensor: n {rand_tensor} n") print(f"Ones Tensor: n {ones_tensor} n") print(f"Zeros Tensor: n {zeros_tensor}")
Random Tensor: tensor([[0.0032, 0.5302, 0.2832], [0.0826, 0.3679, 0.8727]]) Ones Tensor: tensor([[1., 1., 1.], [1., 1., 1.]]) Zeros Tensor: tensor([[0., 0., 0.], [0., 0., 0.]])
張量屬性描述了它們的形狀Shape、資料型別Datatype和儲存它們的裝置Device。
tensor = torch.rand(3,4) print(f"Shape of tensor: {tensor.shape}") print(f"Datatype of tensor: {tensor.dtype}") print(f"Device tensor is stored on: {tensor.device}")
Shape of tensor: torch.Size([3, 4]) Datatype of tensor: torch.float32 Device tensor is stored on: cpu
這裡全面介紹了超過 100 種張量運算,包括算術、線性代數、矩陣操作(轉置、索引、切片)、取樣等。
這些操作中的每一個都可以在 GPU 上執行(通常以比 CPU 更高的速度)。
預設情況下,張量是在 CPU 上建立的。我們需要使用 .to
方法明確地將張量移動到 GPU(在檢查 GPU 可用性之後)。請記住,跨裝置複製大張量在時間和記憶體方面可能會很昂貴!
# We move our tensor to the GPU if available if torch.cuda.is_available(): tensor = tensor.to("cuda")
嘗試列表中的一些操作。如果您熟悉 NumPy API,您會發現 Tensor API 使用起來輕而易舉。
tensor = torch.ones(4, 4) print(f"First row: {tensor[0]}") print(f"First column: {tensor[:, 0]}") print(f"Last column: {tensor[..., -1]}") tensor[:,1] = 0 print(tensor)
First row: tensor([1., 1., 1., 1.]) First column: tensor([1., 1., 1., 1.]) Last column: tensor([1., 1., 1., 1.]) tensor([[1., 0., 1., 1.], [1., 0., 1., 1.], [1., 0., 1., 1.], [1., 0., 1., 1.]])
您可以用來torch.cat
沿給定維度連線一系列張量。另請參閱torch.stack,另一個與torch.cat
.
t1 = torch.cat([tensor, tensor, tensor], dim=1) print(t1)
tensor([[1., 0., 1., 1., 1., 0., 1., 1., 1., 0., 1., 1.], [1., 0., 1., 1., 1., 0., 1., 1., 1., 0., 1., 1.], [1., 0., 1., 1., 1., 0., 1., 1., 1., 0., 1., 1.], [1., 0., 1., 1., 1., 0., 1., 1., 1., 0., 1., 1.]])
# This computes the matrix multiplication between two tensors. y1, y2, y3 will have the same value y1 = tensor @ tensor.T y2 = tensor.matmul(tensor.T) y3 = torch.rand_like(y1) torch.matmul(tensor, tensor.T, out=y3) # This computes the element-wise product. z1, z2, z3 will have the same value z1 = tensor * tensor z2 = tensor.mul(tensor) z3 = torch.rand_like(tensor) torch.mul(tensor, tensor, out=z3)
tensor([[1., 0., 1., 1.], [1., 0., 1., 1.], [1., 0., 1., 1.], [1., 0., 1., 1.]])
如果您有一個單元素張量,例如通過將張量的所有值聚合為一個值,您可以使用以下方法將其轉換為 Python 數值item()
:
agg = tensor.sum() agg_item = agg.item() print(agg_item, type(agg_item))
12.0 <class 'float'>
將結果儲存到運算元中的操作稱為In-place操作。它們由_
字尾表示。例如:x.copy_(y)
, x.t_()
, 會變x
。
print(f"{tensor} n") tensor.add_(5) print(tensor)
tensor([[1., 0., 1., 1.], [1., 0., 1., 1.], [1., 0., 1., 1.], [1., 0., 1., 1.]]) tensor([[6., 5., 6., 6.], [6., 5., 6., 6.], [6., 5., 6., 6.], [6., 5., 6., 6.]])
注意:
In-place 操作可以節省一些記憶體,但在計算導數時可能會出現問題,因為會立即丟失歷史記錄。因此,不鼓勵使用它們。
CPU 和 NumPy 陣列上的張量可以共用它們的底層記憶體位置,改變一個會改變另一個。
t = torch.ones(5) print(f"t: {t}") n = t.numpy() print(f"n: {n}")
t: tensor([1., 1., 1., 1., 1.]) n: [1. 1. 1. 1. 1.]
張量的變化反映在 NumPy 陣列中。
t.add_(1) print(f"t: {t}") print(f"n: {n}")
t: tensor([2., 2., 2., 2., 2.]) n: [2. 2. 2. 2. 2.]
n = np.ones(5) t = torch.from_numpy(n)
NumPy 陣列的變化反映在張量中。
np.add(n, 1, out=n) print(f"t: {t}") print(f"n: {n}")
t: tensor([2., 2., 2., 2., 2.], dtype=torch.float64) n: [2. 2. 2. 2. 2.]
以上就是python機器學習pytorch 張量基礎教學的詳細內容,更多關於python機器學習pytorch張量的資料請關注it145.com其它相關文章!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45