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.
2 parents b5a5c96 + 4e420fd commit 75d37efCopy full SHA for 75d37ef
xopt/generators/bayesian/base_model.py
@@ -1,5 +1,6 @@
1
from abc import ABC, abstractmethod
2
from typing import Dict, List, Union
3
+import warnings
4
5
import pandas as pd
6
import torch
@@ -183,7 +184,12 @@ def build_heteroskedastic_gp(
183
184
suppressed within this method.
185
186
"""
- import warnings
187
+ warnings.warn(
188
+ "Heteroskedastic modeling has been removed from botorch due "
189
+ "to numerical stability issues. A copy of the implementation "
190
+ "is included in Xopt, however it may be unstable / buggy. "
191
+ "Your results may vary."
192
+ )
193
194
warnings.filterwarnings("ignore")
195
0 commit comments