Skip to content

Commit 42826a1

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

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

neural_network/radial_basis_function_neural_network.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,9 @@ def predict(self, input_data: np.ndarray) -> np.ndarray:
132132
rbf_outputs = self._compute_rbf_outputs(input_data)
133133
return rbf_outputs.dot(self.weights)
134134

135+
135136
from doctest import testmod
137+
136138
# Example Usage
137139
if __name__ == "__main__":
138140
testmod() # Running the doctest

0 commit comments

Comments
 (0)