快捷方式

LSTMCell

class torch.ao.nn.quantized.dynamic.LSTMCell(*args, **kwargs)[源代码]

长短期记忆 (LSTM) 单元。

一个动态量化的 LSTMCell 模块,输入和输出为浮点张量。权重量化为 8 位。我们采用了与 torch.nn.LSTMCell 相同的接口,请参阅 https://pytorch.ac.cn/docs/stable/nn.html#torch.nn.LSTMCell 以获取文档。

示例

>>> rnn = nn.LSTMCell(10, 20)
>>> input = torch.randn(6, 3, 10)
>>> hx = torch.randn(3, 20)
>>> cx = torch.randn(3, 20)
>>> output = []
>>> for i in range(6):
...     hx, cx = rnn(input[i], (hx, cx))
...     output.append(hx)

文档

访问 PyTorch 的全面开发者文档

查看文档

教程

获取针对初学者和高级开发人员的深入教程

查看教程

资源

查找开发资源并获得问题的解答

查看资源