We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a0dbb4 commit 18ed523Copy full SHA for 18ed523
GPopt/GPOpt.py
@@ -365,8 +365,6 @@ def surrogate_fit_predict(
365
assert self.acquisition == "ucb", "'acquisition' must be 'ucb' for conformalized surrogates"
366
self.posterior_ = None
367
self.surrogate_obj.fit(X_train, y_train)
368
- print("self.surrogate_obj.aic_",
369
- self.surrogate_obj.aic_)
370
try:
371
res = self.surrogate_obj.predict(X_test, return_pi=True,
372
method="splitconformal")
setup.py
@@ -3,7 +3,7 @@
3
from codecs import open
4
from os import path
5
6
-__version__ = "0.9.1"
+__version__ = "0.9.2"
7
8
subprocess.call("pip install -r requirements.txt", shell=True)
9
0 commit comments