用法:
mxnet.contrib.symbol.dgl_adjacency(data=None, name=None, attr=None, out=None, **kwargs)
此運算符將值為邊 ID 的 CSR 矩陣轉換為值為 1 的鄰接矩陣。輸出 CSR 矩陣始終具有 float32 的數據值。
示例:
x = [[ 1, 0, 0 ], [ 0, 2, 0 ], [ 0, 0, 3 ]] dgl_adjacency(x) = [[ 1, 0, 0 ], [ 0, 1, 0 ], [ 0, 0, 1 ]]
相關用法
- Python mxnet.contrib.symbol.dgl_graph_compact用法及代碼示例
- Python mxnet.contrib.symbol.dgl_csr_neighbor_non_uniform_sample用法及代碼示例
- Python mxnet.contrib.symbol.dgl_subgraph用法及代碼示例
- Python mxnet.contrib.symbol.dgl_csr_neighbor_uniform_sample用法及代碼示例
- Python mxnet.contrib.symbol.SparseEmbedding用法及代碼示例
- Python mxnet.contrib.symbol.edge_id用法及代碼示例
- Python mxnet.contrib.symbol.ifft用法及代碼示例
- Python mxnet.contrib.symbol.count_sketch用法及代碼示例
- Python mxnet.contrib.symbol.fft用法及代碼示例
- Python mxnet.contrib.symbol.ModulatedDeformableConvolution用法及代碼示例
- Python mxnet.contrib.symbol.box_non_maximum_suppression用法及代碼示例
- Python mxnet.contrib.symbol.index_copy用法及代碼示例
- Python mxnet.contrib.symbol.index_array用法及代碼示例
- Python mxnet.contrib.symbol.hawkesll用法及代碼示例
- Python mxnet.contrib.symbol.arange_like用法及代碼示例
- Python mxnet.contrib.symbol.quadratic用法及代碼示例
- Python mxnet.contrib.symbol.allclose用法及代碼示例
- Python mxnet.contrib.symbol.group_adagrad_update用法及代碼示例
- Python mxnet.contrib.symbol.DeformableConvolution用法及代碼示例
- Python mxnet.contrib.symbol.box_nms用法及代碼示例
注:本文由純淨天空篩選整理自apache.org大神的英文原創作品 mxnet.contrib.symbol.dgl_adjacency。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。