(self, *args, **kwargs)
| 1168 | """Operator adding dropout to inputs and outputs of the given cell.""" |
| 1169 | |
| 1170 | def __init__(self, *args, **kwargs): # pylint: disable=useless-super-delegation |
| 1171 | super(DropoutWrapper, self).__init__(*args, **kwargs) |
| 1172 | |
| 1173 | __init__.__doc__ = rnn_cell_wrapper_impl.DropoutWrapperBase.__init__.__doc__ |
| 1174 |