本文简要介绍python语言中 torch.kron
的用法。
用法:
torch.kron(input, other, *, out=None) → Tensor
计算
input
和other
的克罗内克积,用 表示。如果
input
是 张量且other
是 张量,则结果将是具有以下条目的 张量:其中 为 。如果一个张量的维数比另一个少,则它不会被压缩,直到它具有相同的维数。
支持实值和complex-valued 输入。
注意
如上所述,此函数将两个矩阵的 Kronecker 积的典型定义推广到两个张量。当
input
是 矩阵并且other
是 矩阵时,结果将是 块矩阵:其中
input
是 和other
是 。例子:
>>> mat1 = torch.eye(2) >>> mat2 = torch.ones(2, 2) >>> torch.kron(mat1, mat2) tensor([[1., 1., 0., 0.], [1., 1., 0., 0.], [0., 0., 1., 1.], [0., 0., 1., 1.]]) >>> mat1 = torch.eye(2) >>> mat2 = torch.arange(1, 5).reshape(2, 2) >>> torch.kron(mat1, mat2) tensor([[1., 2., 0., 0.], [3., 4., 0., 0.], [0., 0., 1., 2.], [0., 0., 3., 4.]])
相关用法
- Python PyTorch kaiming_normal_用法及代码示例
- Python PyTorch kthvalue用法及代码示例
- Python PyTorch keypointrcnn_resnet50_fpn用法及代码示例
- Python PyTorch kaiming_uniform_用法及代码示例
- Python PyTorch frexp用法及代码示例
- Python PyTorch jvp用法及代码示例
- Python PyTorch cholesky用法及代码示例
- Python PyTorch vdot用法及代码示例
- Python PyTorch ELU用法及代码示例
- Python PyTorch ScaledDotProduct.__init__用法及代码示例
- Python PyTorch gumbel_softmax用法及代码示例
- Python PyTorch get_tokenizer用法及代码示例
- Python PyTorch saved_tensors_hooks用法及代码示例
- Python PyTorch positive用法及代码示例
- Python PyTorch renorm用法及代码示例
- Python PyTorch AvgPool2d用法及代码示例
- Python PyTorch MaxUnpool3d用法及代码示例
- Python PyTorch Bernoulli用法及代码示例
- Python PyTorch Tensor.unflatten用法及代码示例
- Python PyTorch Sigmoid用法及代码示例
- Python PyTorch Tensor.register_hook用法及代码示例
- Python PyTorch ShardedEmbeddingBagCollection.named_parameters用法及代码示例
- Python PyTorch sqrt用法及代码示例
- Python PyTorch PackageImporter.id用法及代码示例
- Python PyTorch column_stack用法及代码示例
注:本文由纯净天空筛选整理自pytorch.org大神的英文原创作品 torch.kron。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。