為了完成任何事情,我們需要一些方法來存儲和操作數(shù)據(jù)。通常,我們需要對數(shù)據(jù)做兩件重要的事情:(i)獲取它們;(ii) 一旦它們進(jìn)入計算機(jī)就對其進(jìn)行處理。如果沒有某種存儲方式,獲取數(shù)據(jù)是沒有意義的,所以首先,讓我們動手操作n維數(shù)組,我們也稱之為張量。如果您已經(jīng)了解 NumPy 科學(xué)計算包,那么這將是一件輕而易舉的事。對于所有現(xiàn)代深度學(xué)習(xí)框架,張量類(ndarray
在 MXNet、 Tensor
PyTorch 和 TensorFlow 中)類似于 NumPy ndarray
,但增加了一些殺手級功能。首先,張量類支持自動微分。其次,它利用 GPU 來加速數(shù)值計算,而 NumPy 只能在 CPU 上運(yùn)行。這些特性使神經(jīng)網(wǎng)絡(luò)既易于編碼又能快速運(yùn)行。
2.1.1. 入門
To start, we import the np
(numpy
) and npx
(numpy_extension
) modules from MXNet. Here, the np
module includes functions supported by NumPy, while the npx
module contains a set of extensions developed to empower deep learning within a NumPy-like environment. When using tensors, we almost always invoke the set_np
function: this is for compatibility of tensor processing by other components of MXNet.
張量表示一個(可能是多維的)數(shù)值數(shù)組。對于一個軸,張量稱為向量。具有兩個軸的張量稱為矩陣。和k>2軸,我們刪除專門的名稱并僅將對象稱為 kth 階張量。
PyTorch 提供了多種函數(shù)來創(chuàng)建預(yù)填充值的新張量。例如,通過調(diào)用,我們可以創(chuàng)建一個均勻分布值的向量,從 0(包括)開始到(不包括)arange(n)
結(jié)束。n
默認(rèn)情況下,間隔大小為 1. 除非另有說明,否則新張量存儲在主內(nèi)存中并指定用于基于 CPU 的計算。
tensor([ 0., 1., 2., 3., 4., 5., 6., 7., 8., 9., 10., 11.])
這些值中的每一個都稱為張量的一個元素。張量 x
包含 12 個元素。我們可以通過其方法檢查張量中元素的總數(shù)numel
。
12
MXNet provides a variety of functions for creating new tensors prepopulated with values. For example, by invoking arange(n)
, we can create a vector of evenly spaced values, starting at 0 (included) and ending at n
(not included). By default, the interval size is 1. Unless otherwise specified, new tensors are stored in main memory and designated for CPU-based computation.
array([ 0., 1., 2., 3., 4., 5., 6., 7., 8., 9., 10., 11.])
Each of these values is called an element of the tensor. The tensor x
contains 12 elements. We can inspect the total number of elements in a tensor via its size
attribute.
12
No GPU/TPU found, falling back to CPU. (Set TF_CPP_MIN_LOG_LEVEL=0 and rerun for more info.)
Array([ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], dtype=int32)
12
TensorFlow provides a variety of functions for creating new tensors prepopulated with values. For example, by invoking range(n)
, we can create a vector of evenly spaced values, starting at 0 (included) and ending at n
(not included). By default, the interval size is 1. Unless otherwise specified, new tensors are stored in main memory and designated for CPU-based computation.
<tf.Tensor: shape=(12,), dtype=float32, numpy= array([ 0., 1., 2., 3., 4., 5., 6., 7., 8., 9., 10., 11.], dtype=float32)>
Each of these values is called an element of the tensor. The tensor x
contains 12 elements. We can inspect the total number of elements in a tensor via the size
function.
<tf.Tensor: shape=(), dtype=int32, numpy=12>
我們可以通過檢查其屬性來訪問張量的形狀(沿每個軸的長度)shape
。因為我們在這里處理的是一個向量,所以它只shape
包含一個元素并且與大小相同。
我們可以通過調(diào)用 來改變張量的形狀而不改變它的大小或值reshape
。例如,我們可以將形狀為 (12,) 的向量轉(zhuǎn)換為形狀為 (3, 4) 的x
矩陣。X
這個新張量保留了所有元素,但將它們重新配置為矩陣。請注意,我們向量的元素一次排成一行,因此 .x[3] == X[0, 3]
請注意,指定每個形狀組件reshape
是多余的。因為我們已經(jīng)知道張量的大小,所以我們可以在給定其余部分的情況下計算出形狀的一個組成部分。例如,給定大小的張量 n和目標(biāo)形狀(h,w), 我們知道 w=n/h. 要自動推斷形狀的一個組件,我們可以-1
為應(yīng)該自動推斷的形狀組件放置一個。在我們的例子中,我們可以等效地調(diào)用or 而不是調(diào)用。x.reshape(3, 4)
x.reshape(-1, 4)
x.reshape(3, -1)
從業(yè)者通常需要使用初始化為包含全零或全一的張量。我們可以通過函數(shù)構(gòu)造一個所有元素都設(shè)置為零且形狀為 (2, 3, 4) 的張量zeros
。
tensor([[[0., 0., 0., 0.], [0., 0., 0., 0.], [0., 0., 0., 0.]], [[0., 0., 0., 0.], [0., 0., 0., 0.], [0., 0., 0., 0.]]])
array([[[0., 0., 0., 0.], [0., 0., 0., 0.], [0., 0., 0., 0.]], [[0., 0., 0., 0.], [0., 0., 0., 0.], [0., 0., 0., 0.]]])
Array([[[0., 0., 0., 0.], [0., 0., 0., 0.], [0., 0., 0., 0.]], [[0., 0., 0., 0.], [0., 0., 0., 0.], [0., 0., 0., 0.]]], dtype=float32)
類似地,我們可以通過調(diào)用創(chuàng)建一個全部為 1 的張量ones
。
tensor([[[1., 1., 1., 1.], [1., 1., 1., 1.], [1., 1., 1., 1.]], [[1., 1., 1., 1.], [1., 1., 1., 1.], [1., 1., 1., 1.]]])
array([[[1., 1., 1., 1.], [1., 1., 1., 1.], [1., 1., 1., 1.]], [[1., 1., 1., 1.], [1., 1., 1., 1.], [1., 1., 1., 1.]]])
Array([[[1., 1., 1., 1.], [1., 1., 1., 1.], [1., 1., 1., 1.]], [[1., 1., 1., 1.], [1., 1., 1., 1.], [1., 1., 1., 1.]]], dtype=float32)
我們經(jīng)常希望從給定的概率分布中隨機(jī)(且獨(dú)立地)采樣每個元素。例如,神經(jīng)網(wǎng)絡(luò)的參數(shù)通常是隨機(jī)初始化的。以下代碼片段創(chuàng)建了一個張量,其中的元素取自標(biāo)準(zhǔn)高斯(正態(tài))分布,均值為 0,標(biāo)準(zhǔn)差為 1。
tensor([[ 1.4251, -1.4341, 0.2826, -0.4915], [ 0.1799, -1.1769, 2.3581, -0.1923], [ 0.8576, -0.0719, 1.4172, -1.3151]])
array([[ 2.2122064 , 1.1630787 , 0.7740038 , 0.4838046 ], [ 1.0434403 , 0.29956347, 1.1839255 , 0.15302546], [ 1.8917114 , -1.1688148 , -1.2347414 , 1.5580711 ]])
Array([[ 1.1901639 , -1.0996888 , 0.44367844, 0.5984697 ], [-0.39189556, 0.69261974, 0.46018356, -2.068578 ], [-0.21438177, -0.9898306 , -0.6789304 , 0.27362573]], dtype=float32)
最后,我們可以通過提供(可能嵌套的)包含數(shù)字文字的 Python 列表為每個元素提供精確值來構(gòu)造張量。在這里,我們構(gòu)建了一個包含列表列表的矩陣,其中最外層的列表對應(yīng)于軸 0,內(nèi)部列表對應(yīng)于軸 1。
tensor([[2, 1, 4, 3], [1, 2, 3, 4], [4, 3, 2, 1]])
array([[2., 1., 4., 3.], [1., 2., 3., 4.], [4., 3., 2., 1.]])
Array([[2, 1, 4, 3], [1, 2, 3, 4], [4, 3, 2, 1]], dtype=int32)
2.1.2. 索引和切片
與 Python 列表一樣,我們可以通過索引(從 0 開始)訪問張量元素。要根據(jù)元素相對于列表末尾的位置訪問元素,我們可以使用負(fù)索引。最后,我們可以通過切片(例如,)訪問整個索引范圍X[start:stop]
,其中返回值包括第一個索引(start
)但不包括最后一個(stop
)。最后,當(dāng)只有一個索引(或切片)被指定為kth階張量,它沿軸 0 應(yīng)用。因此,在下面的代碼中,[-1]
選擇最后一行并 [1:3]
選擇第二行和第三行。
(tensor([ 8., 9., 10., 11.]), tensor([[ 4., 5., 6., 7.], [ 8., 9., 10., 11.]]))
除了讀取之外,我們還可以通過指定索引來寫入矩陣的元素。
tensor([[ 0., 1., 2., 3.], [ 4., 5., 17., 7.], [ 8., 9., 10., 11.]])
(array([ 8., 9., 10., 11.]), array([[ 4., 5., 6., 7.], [ 8., 9., 10., 11.]]))
Beyond reading, we can also write elements of a matrix by specifying indices.
array([[ 0., 1., 2., 3.], [ 4., 5., 17., 7.], [ 8., 9., 10., 11.]])
(Array([ 8, 9, 10, 11], dtype=int32), Array([[ 4, 5, 6, 7], [ 8, 9, 10, 11]], dtype=int32))
Array([[ 0, 1, 2, 3], [ 4, 5, 17, 7], [ 8, 9, 10, 11]], dtype=int32)
(<tf.Tensor: shape=(4,), dtype=float32, numpy=array([ 8., 9., 10., 11.], dtype=float32)>, <tf.Tensor: shape=(2, 4), dtype=float32, numpy= array([[ 4., 5., 6., 7.], [ 8., 9., 10., 11.]], dtype=float32)>)
Tensors
in TensorFlow are immutable, and cannot be assigned to. Variables
in TensorFlow are mutable containers of state that support assignments. Keep in mind that gradients in TensorFlow do not flow backwards through Variable
assignments.
Beyond assigning a value to the entire Variable
, we can write elements of a Variable
by specifying indices.
<tf.Variable 'Variable:0' shape=(3, 4) dtype=float32, numpy= array([[ 0., 1., 2., 3.], [ 4., 5., 9., 7.], [ 8., 9., 10., 11.]], dtype=float32)>
如果我們想為多個元素分配相同的值,我們在賦值操作的左側(cè)應(yīng)用索引。例如,訪問第一行和第二行,其中 獲取沿軸 1(列)的所有元素。雖然我們討論了矩陣的索引,但它也適用于向量和二維以上的張量。[:2, :]
:
Array([[12, 12, 12, 12], [12, 12, 12, 12], [ 8, 9, 10, 11]], dtype=int32)
2.1.3. 操作
現(xiàn)在我們知道如何構(gòu)建張量以及如何讀取和寫入它們的元素,我們可以開始使用各種數(shù)學(xué)運(yùn)算來操縱它們。最有用的工具之一是 逐元素操作。這些將標(biāo)準(zhǔn)標(biāo)量運(yùn)算應(yīng)用于張量的每個元素。對于將兩個張量作為輸入的函數(shù),逐元素運(yùn)算對每對對應(yīng)元素應(yīng)用一些標(biāo)準(zhǔn)二元運(yùn)算符。我們可以從從標(biāo)量映射到標(biāo)量的任何函數(shù)創(chuàng)建一個逐元素函數(shù)。
在數(shù)學(xué)符號中,我們用簽名表示這樣的一元標(biāo)量運(yùn)算符(接受一個輸入 )f:R→R. 這只是意味著函數(shù)從任何實(shí)數(shù)映射到其他實(shí)數(shù)。大多數(shù)標(biāo)準(zhǔn)運(yùn)算符都可以按元素應(yīng)用,包括一元運(yùn)算符,如ex.
tensor([162754.7969, 162754.7969, 162754.7969, 162754.7969, 162754.7969, 162754.7969, 162754.7969, 162754.7969, 2980.9580, 8103.0840, 22026.4648, 59874.1406])
array([1.0000000e+00, 2.7182817e+00, 7.3890562e+00, 2.0085537e+01, 5.4598148e+01, 1.4841316e+02, 4.0342880e+02, 1.0966332e+03, 2.9809580e+03, 8.1030840e+03, 2.2026465e+04, 5.9874141e+04])
Array([1.0000000e+00, 2.7182817e+00, 7.3890562e+00, 2.0085537e+01, 5.4598152e+01, 1.4841316e+02, 4.0342880e+02, 1.0966332e+03, 2.9809580e+03, 8.1030840e+03, 2.2026465e+04, 5.9874141e+04], dtype=float32)
同樣,我們表示二元標(biāo)量運(yùn)算符,它通過簽名將成對的實(shí)數(shù)映射到一個(單個)實(shí)數(shù) f:R,R→R. 給定任意兩個向量u和v 形狀相同,和一個二元運(yùn)算符f,我們可以產(chǎn)生一個向量 c=F(u,v)通過設(shè)置 ci←f(ui,vi)對全部i, 在哪里ci,ui, 和vi是ith向量的元素 c,u, 和v. 在這里,我們產(chǎn)生了向量值 F:Rd,Rd→Rd通過 將標(biāo)量函數(shù)提升為元素向量運(yùn)算。+
加法 ( )、減法 ( -
)、乘法 ( *
)、除法 ( /
) 和求冪 ( )的常見標(biāo)準(zhǔn)算術(shù)運(yùn)算符**
都已提升為任意形狀的相同形狀張量的元素運(yùn)算。
(tensor([ 3., 4., 6., 10.]), tensor([-1., 0., 2., 6.]), tensor([ 2., 4., 8., 16.]), tensor([0.5000, 1.0000, 2.0000, 4.0000]), tensor([ 1., 4., 16., 64.]))
(array([ 3., 4., 6., 10.]), array([-1., 0., 2., 6.]), array([ 2., 4., 8., 16.]), array([0.5, 1. , 2. , 4. ]), array([ 1., 4., 16., 64.]))
(Array([ 3., 4., 6., 10.], dtype=float32), Array([-1., 0., 2., 6.], dtype=float32), Array([ 2., 4., 8., 16.], dtype=float32), Array([0.5, 1. , 2. , 4. ], dtype=float32), Array([ 1., 4., 16., 64.], dtype=float32))
(<tf.Tensor: shape=(4,), dtype=float32, numpy=array([ 3., 4., 6., 10.], dtype=float32)>, <tf.Tensor: shape=(4,), dtype=float32, numpy=array([-1., 0., 2., 6.], dtype=float32)>, <tf.Tensor: shape=(4,), dtype=float32, numpy=array([ 2., 4., 8., 16.], dtype=float32)>, <tf.Tensor: shape=(4,), dtype=float32, numpy=array([0.5, 1. , 2. , 4. ], dtype=float32)>, <tf.Tensor: shape=(4,), dtype=float32, numpy=array([ 1., 4., 16., 64.], dtype=float32)>)
除了按元素計算,我們還可以執(zhí)行線性代數(shù)運(yùn)算,例如點(diǎn)積和矩陣乘法。我們將在2.3 節(jié)中詳細(xì)說明這些內(nèi)容。
我們還可以將多個張量連接在一起,將它們首尾相連形成一個更大的張量。我們只需要提供一個張量列表并告訴系統(tǒng)沿著哪個軸連接。下面的示例顯示了當(dāng)我們沿行(軸 0)與列(軸 1)連接兩個矩陣時會發(fā)生什么。我們可以看到第一個輸出的 axis-0 長度 (6) 是兩個輸入張量的軸 0 長度之和 (3+3); 而第二個輸出的 axis-1 長度 (8) 是兩個輸入張量的 axis-1 長度之和 (4+4).
(tensor([[ 0., 1., 2., 3.], [ 4., 5., 6., 7.], [ 8., 9., 10., 11.], [ 2., 1., 4., 3.], [ 1., 2., 3., 4.], [ 4., 3., 2., 1.]]), tensor([[ 0., 1., 2., 3., 2., 1., 4., 3.], [ 4., 5., 6., 7., 1., 2., 3., 4.], [ 8., 9., 10., 11., 4., 3., 2., 1.]]))
(array([[ 0., 1., 2., 3.], [ 4., 5., 6., 7.], [ 8., 9., 10., 11.], [ 2., 1., 4., 3.], [ 1., 2., 3., 4.], [ 4., 3., 2., 1.]]), array([[ 0., 1., 2., 3., 2., 1., 4., 3.], [ 4., 5., 6., 7., 1., 2., 3., 4.], [ 8., 9., 10., 11., 4., 3., 2., 1.]]))
(Array([[ 0., 1., 2., 3.], [ 4., 5., 6., 7.], [ 8., 9., 10., 11.], [ 2., 1., 4., 3.], [ 1., 2., 3., 4.], [ 4., 3., 2., 1.]], dtype=float32), Array([[ 0., 1., 2., 3., 2., 1., 4., 3.], [ 4., 5., 6., 7., 1., 2., 3., 4.], [ 8., 9., 10., 11., 4., 3., 2., 1.]], dtype=float32))
(<tf.Tensor: shape=(6, 4), dtype=float32, numpy= array([[ 0., 1., 2., 3.], [ 4., 5., 6., 7.], [ 8., 9., 10., 11.], [ 2., 1., 4., 3.], [ 1., 2., 3., 4.], [ 4., 3., 2., 1.]], dtype=float32)>, <tf.Tensor: shape=(3, 8), dtype=float32, numpy= array([[ 0., 1., 2., 3., 2., 1., 4., 3.], [ 4., 5., 6., 7., 1., 2., 3., 4.], [ 8., 9., 10., 11., 4., 3., 2., 1.]], dtype=float32)>)
有時,我們想通過邏輯語句構(gòu)造一個二元張量。舉個例子。對于每一個位置,如果和相等,則結(jié)果中相應(yīng)的條目取值,否則取值。X == Y
i, j
X[i, j]
Y[i, j]
1
0
tensor([[False, True, False, True], [False, False, False, False], [False, False, False, False]])
array([[False, True, False, True], [False, False, False, False], [False, False, False, False]])
Array([[False, True, False, True], [False, False, False, False], [False, False, False, False]], dtype=bool)
將張量中的所有元素相加得到一個只有一個元素的張量。
2.1.4. 廣播
到目前為止,您已經(jīng)知道如何對兩個相同形狀的張量執(zhí)行逐元素二元運(yùn)算。在某些條件下,即使形狀不同,我們?nèi)匀豢梢酝ㄟ^調(diào)用廣播機(jī)制來執(zhí)行元素二元運(yùn)算。廣播根據(jù)以下兩步過程進(jìn)行:(i)通過沿長度為 1 的軸復(fù)制元素來擴(kuò)展一個或兩個數(shù)組,以便在此轉(zhuǎn)換之后,兩個張量具有相同的形狀;(ii) 對結(jié)果數(shù)組執(zhí)行逐元素操作。
(tensor([[0], [1], [2]]), tensor([[0, 1]]))
(array([[0.], [1.], [2.]]), array([[0., 1.]]))
(Array([[0], [1], [2]], dtype=int32), Array([[0, 1]], dtype=int32))
因為a
和b
是3×1和1×2 矩陣,它們的形狀不匹配。廣播產(chǎn)生了更大的3×2a
通過在按元素添加之前沿列復(fù)制矩陣和b
沿行復(fù)制矩陣來創(chuàng)建矩陣。
2.1.5. 節(jié)省內(nèi)存
運(yùn)行操作可能會導(dǎo)致將新內(nèi)存分配給主機(jī)結(jié)果。例如,如果我們寫,我們?nèi)∠?/font>曾經(jīng)指向的張量 ,而是指向新分配的內(nèi)存。我們可以用 Python 的函數(shù)來演示這個問題,它為我們提供了被引用對象在內(nèi)存中的確切地址。請注意,在我們運(yùn)行之后,指向不同的位置。這是因為 Python 首先求值,為結(jié)果分配新的內(nèi)存,然后指向內(nèi)存中的這個新位置。Y = X + Y
Y
Y
id()
Y = Y + X
id(Y)
Y + X
Y
由于兩個原因,這可能是不受歡迎的。首先,我們不想一直在不必要地分配內(nèi)存。在機(jī)器學(xué)習(xí)中,我們通常有數(shù)百兆字節(jié)的參數(shù)并且每秒更新所有這些參數(shù)多次。只要有可能,我們都希望就地執(zhí)行這些更新。其次,我們可能會從多個變量中指向相同的參數(shù)。如果我們沒有就地更新,我們必須小心更新所有這些引用,以免引發(fā)內(nèi)存泄漏或無意中引用過時的參數(shù)。
幸運(yùn)的是,執(zhí)行就地操作很容易。Y
我們可以使用切片表示法將操作的結(jié)果分配給先前分配的數(shù)組: 。為了說明這個概念,我們覆蓋張量的值,在初始化它之后,使用 ,使其具有與 相同的形狀。Y[:] =
Z
zeros_like
Y
id(Z): 139763606871712 id(Z): 139763606871712
X
如果在后續(xù)計算中不重用的值,我們也可以使用or來減少操作的內(nèi)存開銷。X[:] = X + Y
X += Y
True
Fortunately, performing in-place operations is easy. We can assign the result of an operation to a previously allocated array Y
by using slice notation: Y[:] =
. To illustrate this concept, we overwrite the values of tensor Z
, after initializing it, using zeros_like
, to have the same shape as Y
.
id(Z): 140447312694464 id(Z): 140447312694464
If the value of X
is not reused in subsequent computations, we can also use X[:] = X + Y
or X += Y
to reduce the memory overhead of the operation.
True
Variables
are mutable containers of state in TensorFlow. They provide a way to store your model parameters. We can assign the result of an operation to a Variable
with assign
. To illustrate this concept, we overwrite the values of Variable
Z
after initializing it, using zeros_like
, to have the same shape as Y
.
id(Z): 140457113440208 id(Z): 140457113440208
Even once you store state persistently in a Variable
, you may want to reduce your memory usage further by avoiding excess allocations for tensors that are not your model parameters. Because TensorFlow Tensors
are immutable and gradients do not flow through Variable
assignments, TensorFlow does not provide an explicit way to run an individual operation in-place.
However, TensorFlow provides the tf.function
decorator to wrap computation inside of a TensorFlow graph that gets compiled and optimized before running. This allows TensorFlow to prune unused values, and to reuse prior allocations that are no longer needed. This minimizes the memory overhead of TensorFlow computations.
<tf.Tensor: shape=(3, 4), dtype=float32, numpy= array([[ 8., 9., 26., 27.], [24., 33., 42., 51.], [56., 57., 58., 59.]], dtype=float32)>
2.1.6. 轉(zhuǎn)換為其他 Python 對象
轉(zhuǎn)換為 NumPy 張量 ( ndarray
),反之亦然,很容易。torch Tensor 和 numpy array 將共享它們的底層內(nèi)存,通過就地操作改變一個也會改變另一個。
(numpy.ndarray, torch.Tensor)
Converting to a NumPy tensor (ndarray
), or vice versa, is easy. The converted result does not share memory. This minor inconvenience is actually quite important: when you perform operations on the CPU or on GPUs, you do not want to halt computation, waiting to see whether the NumPy package of Python might want to be doing something else with the same chunk of memory.
(numpy.ndarray, mxnet.numpy.ndarray)
(numpy.ndarray, jaxlib.xla_extension.Array)
Converting to a NumPy tensor (ndarray
), or vice versa, is easy. The converted result does not share memory. This minor inconvenience is actually quite important: when you perform operations on the CPU or on GPUs, you do not want to halt computation, waiting to see whether the NumPy package of Python might want to be doing something else with the same chunk of memory.
(numpy.ndarray, tensorflow.python.framework.ops.EagerTensor)
要將大小為 1 的張量轉(zhuǎn)換為 Python 標(biāo)量,我們可以調(diào)用函數(shù) item
或 Python 的內(nèi)置函數(shù)。
2.1.7. 概括
張量類是深度學(xué)習(xí)庫中存儲和操作數(shù)據(jù)的主要接口。張量提供多種功能,包括構(gòu)造例程;索引和切片;基礎(chǔ)數(shù)學(xué)運(yùn)算;廣播; 內(nèi)存高效分配;以及與其他 Python 對象之間的轉(zhuǎn)換。
2.1.8. 練習(xí)
-
運(yùn)行本節(jié)中的代碼。把條件語句改成 or ,然后看看你能得到什么樣的張量。
X == Y
X < Y
X > Y
-
將廣播機(jī)制中按元素操作的兩個張量替換為其他形狀,例如 3 維張量。結(jié)果和預(yù)期的一樣嗎?
-
數(shù)據(jù)
+關(guān)注
關(guān)注
8文章
7067瀏覽量
89108 -
gpu
+關(guān)注
關(guān)注
28文章
4743瀏覽量
128992 -
pytorch
+關(guān)注
關(guān)注
2文章
808瀏覽量
13238
發(fā)布評論請先 登錄
相關(guān)推薦
評論