最新 最热

tf.strided_slice

以tf.strided_slice(input, [0,0,0], [2,2,2], [1,2,1])调用为例,start = [0,0,0] , end = [2,2,2], stride = [1,2,1],求一个[start, end)的一个片段,注意end为开区间 第1维 start = 0 , end = ......

2022-09-02
1

三星宣布将继续与AMD合作,开发RDNA2 架构移动GPU

8月29日消息,当去年三星宣布与 AMD 合作开发基于 AMD RDNA2 架构的移动 GPU 时,消费者充满了期待,结果 Exynos 2200 搭载的 Xclipse 920 GPU 并没有达到预期,三星也在更多地区的 Galaxy S22 系列上改用了骁龙 8 Gen 1 处...

2022-09-02
0

传谷歌第三代Tensor移动处理将采用三星3nm代工

8月31日消息,根据韩国媒体BusinessKorea 报导,谷歌(Google)已经决定将用于下一代智能手机Pixel 8 系列搭载的第三代Tensor移动处理器,交由三星3nm制程技术来生产,预计将在2023 年下半年正式推出。市场人士表示,谷歌将新一代...

2022-09-02
0

torch.index_select

torch.index_select(input, dim, index, out=None) → Tensor

2022-08-20
1

torch.log

Returns a new tensor with the natural logarithm of the elements of input.

2022-08-18
1

torch.exp()

Returns a new tensor with the exponential of the elements of the input tensor input.

2022-08-18
1

torch.from_numpy

The returned tensor and ndarray share the same memory. Modifications to the tensor will be reflected in the ndarray and vice versa. The returned tensor is not r...

2022-08-18
1

torch.nn.init.constant_()函数

torch.nn.init.constant_(tensor, val)[source]

2022-08-18
0

Pytorch 拷贝数据

clone()函数返回一个和源张量同shape、dtype和device的张量,与源张量不共享数据内存,但提供梯度的回溯。

2022-08-06
1

Pytorch can't optimize a non-leaf Tensor

本文记录 pytorch: can’t optimize a non-leaf Tensor 解决方案。 错误 运行优化时报错 from torch import optim weights = torch.rand(2,1,128,416)weights.requires_grad = Truewe...

2022-08-05
0