-
-
Notifications
You must be signed in to change notification settings - Fork 46.6k
Adding LSTM algorithm from scratch in neural network algorithm sections #12082
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from 16 commits
3e22181
a2222f1
f054733
369a6b2
91c8173
0fbb04b
4c2ec80
39fd713
3c2da6e
21dab0f
5a00ca6
3d9b893
5c186b1
94ad70c
6e7cc7c
e48555d
1608382
831c57f
45a51ad
b1e7e72
9833239
f058116
750c9f6
88ac16b
562eeb4
f3e974f
f0919fe
2ee5df1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,338 @@ | ||
""" | ||
Name - - LSTM - Long Short-Term Memory Network For Sequence Prediction | ||
Goal - - Predict sequences of data | ||
Detail: Total 3 layers neural network | ||
* Input layer | ||
* LSTM layer | ||
* Output layer | ||
Author: Shashank Tyagi | ||
Github: LEVII007 | ||
Date: [Current Date] | ||
""" | ||
|
||
# from typing import dict, list | ||
|
||
import numpy as np | ||
from numpy.random import Generator | ||
|
||
|
||
class LSTM: | ||
def __init__( | ||
self, data: str, hidden_dim: int = 25, epochs: int = 10, lr: float = 0.05 | ||
) -> None: | ||
""" | ||
Initialize the LSTM network with the given data and hyperparameters. | ||
|
||
:param data: The input data as a string. | ||
:param hidden_dim: The number of hidden units in the LSTM layer. | ||
:param epochs: The number of training epochs. | ||
:param lr: The learning rate. | ||
""" | ||
self.data: str = data.lower() | ||
self.hidden_dim: int = hidden_dim | ||
self.epochs: int = epochs | ||
self.lr: float = lr | ||
|
||
self.chars: set = set(self.data) | ||
self.data_size: int = len(self.data) | ||
self.char_size: int = len(self.chars) | ||
|
||
print(f"Data size: {self.data_size}, Char Size: {self.char_size}") | ||
|
||
self.char_to_idx: dict[str, int] = {c: i for i, c in enumerate(self.chars)} | ||
self.idx_to_char: dict[int, str] = dict(enumerate(self.chars)) | ||
|
||
self.train_X: str = self.data[:-1] | ||
self.train_y: str = self.data[1:] | ||
self.rng: Generator = np.random.default_rng() | ||
|
||
# Initialize attributes used in reset method | ||
self.concat_inputs: dict[int, np.ndarray] = {} | ||
self.hidden_states: dict[int, np.ndarray] = {-1: np.zeros((self.hidden_dim, 1))} | ||
self.cell_states: dict[int, np.ndarray] = {-1: np.zeros((self.hidden_dim, 1))} | ||
self.activation_outputs: dict[int, np.ndarray] = {} | ||
self.candidate_gates: dict[int, np.ndarray] = {} | ||
self.output_gates: dict[int, np.ndarray] = {} | ||
self.forget_gates: dict[int, np.ndarray] = {} | ||
self.input_gates: dict[int, np.ndarray] = {} | ||
self.outputs: dict[int, np.ndarray] = {} | ||
|
||
self.initialize_weights() | ||
|
||
def one_hot_encode(self, char: str) -> np.ndarray: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file |
||
""" | ||
One-hot encode a character. | ||
|
||
:param char: The character to encode. | ||
:return: A one-hot encoded vector. | ||
""" | ||
vector = np.zeros((self.char_size, 1)) | ||
vector[self.char_to_idx[char]] = 1 | ||
return vector | ||
|
||
def initialize_weights(self) -> None: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file |
||
""" | ||
Initialize the weights and biases for the LSTM network. | ||
""" | ||
|
||
self.wf = self.init_weights(self.char_size + self.hidden_dim, self.hidden_dim) | ||
self.bf = np.zeros((self.hidden_dim, 1)) | ||
|
||
self.wi = self.init_weights(self.char_size + self.hidden_dim, self.hidden_dim) | ||
self.bi = np.zeros((self.hidden_dim, 1)) | ||
|
||
self.wc = self.init_weights(self.char_size + self.hidden_dim, self.hidden_dim) | ||
self.bc = np.zeros((self.hidden_dim, 1)) | ||
|
||
self.wo = self.init_weights(self.char_size + self.hidden_dim, self.hidden_dim) | ||
self.bo = np.zeros((self.hidden_dim, 1)) | ||
|
||
self.wy: np.ndarray = self.init_weights(self.hidden_dim, self.char_size) | ||
self.by: np.ndarray = np.zeros((self.char_size, 1)) | ||
|
||
def init_weights(self, input_dim: int, output_dim: int) -> np.ndarray: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file |
||
""" | ||
Initialize weights with random values. | ||
|
||
:param input_dim: The input dimension. | ||
:param output_dim: The output dimension. | ||
:return: A matrix of initialized weights. | ||
""" | ||
return self.rng.uniform(-1, 1, (output_dim, input_dim)) * np.sqrt( | ||
6 / (input_dim + output_dim) | ||
) | ||
|
||
def sigmoid(self, x: np.ndarray, derivative: bool = False) -> np.ndarray: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file Please provide descriptive name for the parameter: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file Please provide descriptive name for the parameter: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file Please provide descriptive name for the parameter: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file Please provide descriptive name for the parameter: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file Please provide descriptive name for the parameter: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file Please provide descriptive name for the parameter: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file Please provide descriptive name for the parameter: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file Please provide descriptive name for the parameter: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file Please provide descriptive name for the parameter: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please provide descriptive name for the parameter: |
||
""" | ||
Sigmoid activation function. | ||
|
||
:param x: The input array. | ||
:param derivative: Whether to compute the derivative. | ||
:return: The sigmoid activation or its derivative. | ||
""" | ||
if derivative: | ||
return x * (1 - x) | ||
return 1 / (1 + np.exp(-x)) | ||
|
||
def tanh(self, x: np.ndarray, derivative: bool = False) -> np.ndarray: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file Please provide descriptive name for the parameter: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file Please provide descriptive name for the parameter: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file Please provide descriptive name for the parameter: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file Please provide descriptive name for the parameter: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file Please provide descriptive name for the parameter: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file Please provide descriptive name for the parameter: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file Please provide descriptive name for the parameter: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file Please provide descriptive name for the parameter: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file Please provide descriptive name for the parameter: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please provide descriptive name for the parameter: |
||
""" | ||
Tanh activation function. | ||
|
||
:param x: The input array. | ||
:param derivative: Whether to compute the derivative. | ||
:return: The tanh activation or its derivative. | ||
""" | ||
if derivative: | ||
return 1 - x**2 | ||
return np.tanh(x) | ||
|
||
def softmax(self, x: np.ndarray) -> np.ndarray: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file Please provide descriptive name for the parameter: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file Please provide descriptive name for the parameter: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file Please provide descriptive name for the parameter: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file Please provide descriptive name for the parameter: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file Please provide descriptive name for the parameter: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file Please provide descriptive name for the parameter: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file Please provide descriptive name for the parameter: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file Please provide descriptive name for the parameter: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file Please provide descriptive name for the parameter: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please provide descriptive name for the parameter: |
||
""" | ||
Softmax activation function. | ||
|
||
:param x: The input array. | ||
:return: The softmax activation. | ||
""" | ||
exp_x = np.exp(x - np.max(x)) | ||
return exp_x / exp_x.sum(axis=0) | ||
|
||
def reset(self) -> None: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file |
||
""" | ||
Reset the LSTM network states. | ||
""" | ||
self.concat_inputs = {} | ||
self.hidden_states = {-1: np.zeros((self.hidden_dim, 1))} | ||
self.cell_states = {-1: np.zeros((self.hidden_dim, 1))} | ||
self.activation_outputs = {} | ||
self.candidate_gates = {} | ||
self.output_gates = {} | ||
self.forget_gates = {} | ||
self.input_gates = {} | ||
self.outputs = {} | ||
|
||
def forward(self, inputs: list[np.ndarray]) -> list[np.ndarray]: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file |
||
""" | ||
Perform forward propagation through the LSTM network. | ||
|
||
:param inputs: The input data as a list of one-hot encoded vectors. | ||
:return: The outputs of the network. | ||
""" | ||
self.reset() | ||
|
||
outputs = [] | ||
for t in range(len(inputs)): | ||
self.concat_inputs[t] = np.concatenate( | ||
(self.hidden_states[t - 1], inputs[t]) | ||
) | ||
|
||
self.forget_gates[t] = self.sigmoid( | ||
np.dot(self.wf, self.concat_inputs[t]) + self.bf | ||
) | ||
self.input_gates[t] = self.sigmoid( | ||
np.dot(self.wi, self.concat_inputs[t]) + self.bi | ||
) | ||
self.candidate_gates[t] = self.tanh( | ||
np.dot(self.wc, self.concat_inputs[t]) + self.bc | ||
) | ||
self.output_gates[t] = self.sigmoid( | ||
np.dot(self.wo, self.concat_inputs[t]) + self.bo | ||
) | ||
|
||
self.cell_states[t] = ( | ||
self.forget_gates[t] * self.cell_states[t - 1] | ||
+ self.input_gates[t] * self.candidate_gates[t] | ||
) | ||
self.hidden_states[t] = self.output_gates[t] * self.tanh( | ||
self.cell_states[t] | ||
) | ||
|
||
outputs.append(np.dot(self.wy, self.hidden_states[t]) + self.by) | ||
|
||
return outputs | ||
|
||
def backward(self, errors: list[np.ndarray], inputs: list[np.ndarray]) -> None: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file |
||
""" | ||
Perform backpropagation through time to compute gradients and update weights. | ||
|
||
:param errors: The errors at each time step. | ||
:param inputs: The input data as a list of one-hot encoded vectors. | ||
""" | ||
d_wf, d_bf = 0, 0 | ||
d_wi, d_bi = 0, 0 | ||
d_wc, d_bc = 0, 0 | ||
d_wo, d_bo = 0, 0 | ||
d_wy, d_by = 0, 0 | ||
|
||
dh_next, dc_next = ( | ||
np.zeros_like(self.hidden_states[0]), | ||
np.zeros_like(self.cell_states[0]), | ||
) | ||
for t in reversed(range(len(inputs))): | ||
error = errors[t] | ||
|
||
d_wy += np.dot(error, self.hidden_states[t].T) | ||
d_by += error | ||
|
||
d_hs = np.dot(self.wy.T, error) + dh_next | ||
|
||
d_o = ( | ||
self.tanh(self.cell_states[t]) | ||
* d_hs | ||
* self.sigmoid(self.output_gates[t], derivative=True) | ||
) | ||
d_wo += np.dot(d_o, self.concat_inputs[t].T) | ||
d_bo += d_o | ||
|
||
d_cs = ( | ||
self.tanh(self.tanh(self.cell_states[t]), derivative=True) | ||
* self.output_gates[t] | ||
* d_hs | ||
+ dc_next | ||
) | ||
|
||
d_f = ( | ||
d_cs | ||
* self.cell_states[t - 1] | ||
* self.sigmoid(self.forget_gates[t], derivative=True) | ||
) | ||
d_wf += np.dot(d_f, self.concat_inputs[t].T) | ||
d_bf += d_f | ||
|
||
d_i = ( | ||
d_cs | ||
* self.candidate_gates[t] | ||
* self.sigmoid(self.input_gates[t], derivative=True) | ||
) | ||
d_wi += np.dot(d_i, self.concat_inputs[t].T) | ||
d_bi += d_i | ||
|
||
d_c = ( | ||
d_cs | ||
* self.input_gates[t] | ||
* self.tanh(self.candidate_gates[t], derivative=True) | ||
) | ||
d_wc += np.dot(d_c, self.concat_inputs[t].T) | ||
d_bc += d_c | ||
|
||
d_z = ( | ||
np.dot(self.wf.T, d_f) | ||
+ np.dot(self.wi.T, d_i) | ||
+ np.dot(self.wc.T, d_c) | ||
+ np.dot(self.wo.T, d_o) | ||
) | ||
|
||
dh_next = d_z[: self.hidden_dim, :] | ||
dc_next = self.forget_gates[t] * d_cs | ||
|
||
for d in (d_wf, d_bf, d_wi, d_bi, d_wc, d_bc, d_wo, d_bo, d_wy, d_by): | ||
np.clip(d, -1, 1, out=d) | ||
|
||
self.wf += d_wf * self.lr | ||
self.bf += d_bf * self.lr | ||
self.wi += d_wi * self.lr | ||
self.bi += d_bi * self.lr | ||
self.wc += d_wc * self.lr | ||
self.bc += d_bc * self.lr | ||
self.wo += d_wo * self.lr | ||
self.bo += d_bo * self.lr | ||
self.wy += d_wy * self.lr | ||
self.by += d_by * self.lr | ||
|
||
def train(self) -> None: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file |
||
""" | ||
Train the LSTM network on the input data. | ||
""" | ||
inputs = [self.one_hot_encode(char) for char in self.train_X] | ||
|
||
for _ in range(self.epochs): | ||
predictions = self.forward(inputs) | ||
|
||
errors = [] | ||
for t in range(len(predictions)): | ||
errors.append(-self.softmax(predictions[t])) | ||
errors[-1][self.char_to_idx[self.train_y[t]]] += 1 | ||
|
||
self.backward(errors, inputs) | ||
|
||
def test(self) -> None: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file |
||
""" | ||
Test the trained LSTM network on the input data and print the accuracy. | ||
""" | ||
accuracy = 0 | ||
probabilities = self.forward( | ||
[self.one_hot_encode(char) for char in self.train_X] | ||
) | ||
|
||
output = "" | ||
for t in range(len(self.train_y)): | ||
probs = self.softmax(probabilities[t].reshape(-1)) | ||
prediction_index = self.rng.choice(self.char_size, p=probs) | ||
prediction = self.idx_to_char[prediction_index] | ||
|
||
output += prediction | ||
|
||
if prediction == self.train_y[t]: | ||
accuracy += 1 | ||
|
||
print(f"Ground Truth:\n{self.train_y}\n") | ||
print(f"Predictions:\n{output}\n") | ||
|
||
print(f"Accuracy: {round(accuracy * 100 / len(self.train_X), 2)}%") | ||
|
||
|
||
if __name__ == "__main__": | ||
data = """Long Short-Term Memory (LSTM) networks are a type | ||
of recurrent neural network (RNN) capable of learning " | ||
"order dependence in sequence prediction problems. | ||
This behavior is required in complex problem domains like " | ||
"machine translation, speech recognition, and more. | ||
iter and Schmidhuber in 1997, and were refined and " | ||
"popularized by many people in following work.""" | ||
|
||
# lstm = LSTM(data=data, hidden_dim=25, epochs=10, lr=0.05) | ||
|
||
##### Training ##### | ||
# lstm.train() | ||
|
||
##### Testing ##### | ||
# lstm.test() | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. An error occurred while parsing the file: Traceback (most recent call last):
File "/opt/render/project/src/algorithms_keeper/parser/python_parser.py", line 146, in parse
reports = lint_file(
^^^^^^^^^^
libcst._exceptions.ParserSyntaxError: Syntax Error @ 358:1.
parser error: error at 359:0: expected INDENT
# lstm.test()
^ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As there is no test file in this pull request nor any test function or class in the file
neural_network/lstm.py
, please provide doctest for the functionone_hot_encode