评价此页

GRUCell#

class torch.ao.nn.quantized.dynamic.GRUCell(input_size, hidden_size, bias=True, dtype=torch.qint8)[源]#

一个门控循环单元 (GRU) 细胞

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

示例

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