You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After running a grid, users may want to interpolate between evaluated points to predict observables at untested configurations without running the expensive simulator.
Problem
After running a grid, users may want to interpolate between evaluated points to predict observables at untested configurations without running the expensive simulator.
Proposed
fit_surrogate(results: ResultsTable, method="gp") → SurrogateModelscikit-learn), random forestSurrogateModel.predict(config) → dict[str, float]SurrogateModel.uncertainty(config) → dict[str, float](GP only)run_adaptiveas a cheap evaluator for multi-fidelity (Multi-fidelity support: cheap surrogate then expensive model #78)Notes
Low priority. Ties into multi-fidelity support. Likely lives in an optional extra (
trade-study[surrogate]).