Skip to content

Commit e91f39f

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

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

neural_network/radial_basis_function_neural_network.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@ def predict(self, input_data: np.ndarray) -> np.ndarray:
146146
rbf_outputs = self._compute_rbf_outputs(input_data)
147147
return rbf_outputs.dot(self.weights)
148148

149+
149150
# Example Usage
150151
if __name__ == "__main__":
151152
# Sample dataset for XOR problem

0 commit comments

Comments
 (0)