diff --git a/neural_network/lstm.py b/neural_network/lstm.py index 638db6fec..ed6f6064c 100644 --- a/neural_network/lstm.py +++ b/neural_network/lstm.py @@ -7,9 +7,11 @@ Detail: Total 3 layers neural network * Output layer Author: Shashank Tyagi Github: LEVII007 -Date: [Current Date] +link : https://www.kaggle.com/code/navjindervirdee/lstm-neural-network-from-scratch """ + + ##### Explanation ##### # This script implements a Long Short-Term Memory (LSTM) network to learn and predict sequences of characters. # It uses numpy for numerical operations and tqdm for progress visualization.