Lstmregressor
Bases: nn.Module
Standard LSTM model with PyTorch Lightning.
Source code in make_us_rich/pipelines/training/model.py
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
|
forward(x)
Forward pass through the model.
lstm_out = (batch_size, sequence_length, hidden_size)
Source code in make_us_rich/pipelines/training/model.py
39 40 41 42 43 44 45 46 47 48 49 |
|
Last update:
2022-05-04