Metadata-Version: 2.1
Name: lstm-variants
Version: 0.1.2
Summary: Long-Short Term Memory variants
Home-page: https://github.com/urchade/lstm-variants.git
Author: Urchade Zaratiana
Author-email: urchade.zaratiana@gmail.com
License: UNKNOWN
Description: # LSTM Variants
        
        
        **Install**:`pip install rnn-classifiers`
        
        ```python
        from lstm_variants import LightweightLSTM
        import torch
        
        module = LightweightLSTM(input_size=5, hidden_size=32, batch_first=True)
        
        batch_size, seq_len, input_size = 8, 35, 5
        
        x = torch.rand(size=(batch_size, seq_len, input_size))
        
        output, (h_t, c_t) = module(x)
        ```
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
