Skip to content

Commit dee2f7e

Browse files
committed
README fixes
1 parent 7613e05 commit dee2f7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ kernel = RBF(length_scale=1.0, length_scale_bounds=(1e-2, 1e3)) \
118118
regressor = ActiveLearner(
119119
estimator=GaussianProcessRegressor(kernel=kernel),
120120
query_strategy=GP_regression_std,
121-
X_training=X_training.reshape(-1, 1), y_training=y_initial.reshape(-1, 1)
121+
X_training=X_training.reshape(-1, 1), y_training=y_training.reshape(-1, 1)
122122
)
123123
```
124124
The initial regressor is not very accurate.

0 commit comments

Comments
 (0)