Add LSTM algorithm implementation in neural network section

This commit is contained in:
“Shashank 2024-10-15 10:15:47 +05:30
parent 91c8173691
commit 0fbb04b070

View File

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