Files
pytorch/torch/nn/quantizable/modules/__init__.py
2024-07-25 02:48:42 +00:00

10 lines
207 B
Python

from torch.ao.nn.quantizable.modules.activation import MultiheadAttention
from torch.ao.nn.quantizable.modules.rnn import LSTM, LSTMCell
__all__ = [
"LSTM",
"LSTMCell",
"MultiheadAttention",
]