-
Notifications
You must be signed in to change notification settings - Fork 105
Feat_emulators_module #603
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
rhugman
wants to merge
38
commits into
pypest:develop
Choose a base branch
from
rhugman:feat_emulators2
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Add pyemu.emulators module for surrogate modeling capabilities
...thanks Claude for the PR description...
Work in progress. Would really appreciate some external opinions on what doesn't work well. What you would like different, etc. I tried to design the classes in what seemed a sensible manner...but other sets of eyes/opinions would be appreciated!
Summary
This PR introduces a new
pyemu.emulators
module that provides a comprehensive framework for building and deploying surrogate models (emulators) for computationally expensive simulations. The module includes three main emulator types: Data Space Inversion (DSI), Gaussian Process Regression (GPR), and Learning-based Pattern-driven Forecast Approach (LPFA), along with a robust data transformation pipeline.Key Features
🔧 Base Architecture
fit()
,predict()
,save()
, andload()
methods🎯 Emulator Implementations
1. Data Space Inversion (DSI)
2. Gaussian Process Regression (GPR)
3. Learning-based Pattern-driven Forecast Approach (LPFA)
🔄 Data Transformation Pipeline
Technical Implementation
Core Classes
PEST++ Integration
Example Usage
Testing
Breaking Changes
Legacy GPR helper functions are still supported
Legacy DSI helper functions are broken.
Dependencies