Skip to content

Commit db59731

Browse files
Update radial_basis_function_neural_network.py
1 parent ea1fcee commit db59731

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

neural_network/radial_basis_function_neural_network.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
#### Reference
1010
11-
- Wikipedia https://en.wikipedia.org/wiki/Radial_basis_function_network
11+
- Wikipedia: https://en.wikipedia.org/wiki/Radial_basis_function_network
1212
"""
1313

1414
import numpy as np
@@ -96,7 +96,7 @@ def fit(self, input_data: np.ndarray, target_values: np.ndarray) -> None:
9696
target_values (np.ndarray): Target values (num_samples x output_dim).
9797
9898
Raises:
99-
ValueError: If number of samples in input_data and target_values not match.
99+
ValueError: If number of samples in input_data and target_values do not match.
100100
101101
Examples:
102102
>>> rbf_nn = RadialBasisFunctionNeuralNetwork(num_centers=2, spread=1.0)

0 commit comments

Comments
 (0)