用法:
mxnet.contrib.ndarray.dgl_subgraph(*data, **kwargs)
out:- 此函数的输出。
NDArray 或 NDArray 列表
参数:
返回:
返回类型:
该运算符为图中的给定顶点集构造一个诱导子图。运算符接受多组顶点作为输入。对于每组顶点,如果return_mapping 为真,则返回一对 CSR 矩阵:第一个矩阵包含具有新边 ID 的边,第二个矩阵包含具有原始边 ID 的边。
示例:
x=[[1, 0, 0, 2], [3, 0, 4, 0], [0, 5, 0, 0], [0, 6, 7, 0]] v = [0, 1, 2] dgl_subgraph(x, v, return_mapping=True) = [[1, 0, 0], [2, 0, 3], [0, 4, 0]], [[1, 0, 0], [3, 0, 4], [0, 5, 0]]
相关用法
- Python mxnet.contrib.ndarray.dgl_csr_neighbor_non_uniform_sample用法及代码示例
- Python mxnet.contrib.ndarray.dgl_csr_neighbor_uniform_sample用法及代码示例
- Python mxnet.contrib.ndarray.dgl_adjacency用法及代码示例
- Python mxnet.contrib.ndarray.dgl_graph_compact用法及代码示例
- Python mxnet.contrib.ndarray.index_copy用法及代码示例
- Python mxnet.contrib.ndarray.hawkesll用法及代码示例
- Python mxnet.contrib.ndarray.SparseEmbedding用法及代码示例
- Python mxnet.contrib.ndarray.ifft用法及代码示例
- Python mxnet.contrib.ndarray.group_adagrad_update用法及代码示例
- Python mxnet.contrib.ndarray.fft用法及代码示例
- Python mxnet.contrib.ndarray.boolean_mask用法及代码示例
- Python mxnet.contrib.ndarray.edge_id用法及代码示例
- Python mxnet.contrib.ndarray.ModulatedDeformableConvolution用法及代码示例
- Python mxnet.contrib.ndarray.arange_like用法及代码示例
- Python mxnet.contrib.ndarray.box_nms用法及代码示例
- Python mxnet.contrib.ndarray.index_array用法及代码示例
- Python mxnet.contrib.ndarray.count_sketch用法及代码示例
- Python mxnet.contrib.ndarray.box_non_maximum_suppression用法及代码示例
- Python mxnet.contrib.ndarray.DeformableConvolution用法及代码示例
- Python mxnet.contrib.ndarray.quadratic用法及代码示例
注:本文由纯净天空筛选整理自apache.org大神的英文原创作品 mxnet.contrib.ndarray.dgl_subgraph。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。