From 06967bfefc12e50e21e2302ae6501dc796f019f4 Mon Sep 17 00:00:00 2001 From: nikolarobottesla Date: Tue, 4 Jan 2022 19:41:13 -0600 Subject: [PATCH] fix typo in finer example fixed typo in finer example import statement --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 814db06..5ff6214 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ model and acquisition functions. Please see the example below: ```python from bayes_optim import BO, RealSpace -from bayes_optim.Surrogate import GaussianProcess +from bayes_optim.surrogate import GaussianProcess dim = 5 space = RealSpace([-5, 5]) * dim # create the search space