Skip to content

Commit aa823d8

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent a7a4e78 commit aa823d8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

machine_learning/multilayer_perceptron_classifier_from_scratch.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,15 +142,15 @@ def __init__(
142142
self.gamma = gamma # learning_rate decay hyperparameter gamma
143143
self.epoch = epoch
144144
self.hidden_dim = hidden_dim
145-
145+
146146
self.train_loss: list[float] = []
147147
self.train_accuracy: list[float] = []
148148
self.test_loss: list[float] = []
149149
self.test_accuracy: list[float] = []
150150

151151
self.dataloader = dataloader
152152
self.inter_variable: dict[str, np.ndarray] = {}
153-
self.weights1_list: list[np.ndarray] = []
153+
self.weights1_list: list[np.ndarray] = []
154154

155155
def get_inout_dim(self) -> tuple[int, int]:
156156
"""

0 commit comments

Comments
 (0)