def __init__(self, cell, *args, **kwargs):
"""Construct the CellWithExtraInput.
Args:
cell: The RNNCell to wrap (typically a nn.RNNCore).
*args: Extra arguments to pass to __call__.
**kwargs: Extra keyword arguments to pass to __call__.
"""
self._cell = cell
self._args = args
self._kwargs = kwargs
评论列表
文章目录