fixed return type of test function to str from none

This commit is contained in:
“Shashank 2024-10-16 11:21:01 +05:30
parent f0919fed68
commit 2ee5df1cd8

View File

@ -461,7 +461,7 @@ class LongShortTermMemory:
self.backward_pass(errors, inputs) self.backward_pass(errors, inputs)
def test(self) -> None: def test(self) -> str:
""" """
Test the LSTM model. Test the LSTM model.