Source code for dlk.core.modules.lstm

# Copyright 2021 cstsunfu. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import torch.nn as nn
import torch
from torch.nn.utils.rnn import pack_padded_sequence, pad_packed_sequence
from typing import Dict
from dlk.utils.config import BaseConfig
from . import module_register, module_config_register, Module
from dlk.utils.logger import Logger

logger = Logger.get_logger()

[docs]@module_config_register("lstm") class LSTMConfig(BaseConfig): """Config for def Config Example: >>> { >>> "config": { >>> "bidirectional": true, >>> "output_size": 200, //the output is 2*hidden_size if use >>> "input_size": 200, >>> "num_layers": 1, >>> "dropout": 0.1, // dropout between layers >>> "dropout_last": true, //dropout the last layer output or not >>> }, >>> "_name": "lstm", >>> } """ def __init__(self, config: Dict): super(LSTMConfig, self).__init__(config) config = config['config'] self.num_layers = config['num_layers'] self.bidirectional= config['bidirectional'] self.input_size = config['input_size'] self.output_size = config['output_size'] self.hidden_size = self.output_size if self.bidirectional: assert self.output_size % 2 == 0 self.hidden_size = self.output_size // 2 self.dropout = config['dropout'] self.dropout_last = config['dropout_last'] self.post_check(config, used=[ "bidirectional", "output_size", "input_size", "num_layers", "dropout", "dropout_last", ])
[docs]@module_register("lstm") class LSTM(Module): "A wrap for nn.LSTM" def __init__(self, config: LSTMConfig): super(LSTM, self).__init__() if config.num_layers <= 1: inlstm_dropout = 0 else: inlstm_dropout = config.dropout self.lstm = nn.LSTM(input_size=config.input_size, hidden_size=config.hidden_size, num_layers=config.num_layers, batch_first=True, bidirectional=config.bidirectional, dropout=inlstm_dropout) self.dropout_last = nn.Dropout(p=float(config.dropout) if config.dropout_last else 0)
[docs] def forward(self, input: torch.Tensor, mask: torch.Tensor)->torch.Tensor: """do forward on a mini batch Args: batch: a mini batch inputs Returns: lstm output the shape is the same as input """ max_seq_len = input.size(1) seq_lens = mask.sum(1).cpu() pack_seq_rep = pack_padded_sequence(input=input, lengths=seq_lens, batch_first=True, enforce_sorted=False) pack_seq_rep = self.lstm(pack_seq_rep)[0] output, _ = pad_packed_sequence(sequence=pack_seq_rep, batch_first=True, total_length=max_seq_len) return self.dropout_last(output)