-
Notifications
You must be signed in to change notification settings - Fork 9
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
Release/v1.6 #111
Release/v1.6 #111
Conversation
Fix floating pt error in simulation
Bug fixes for tests for uav model and surrogates
Co-authored-by: Katy Jarvis <[email protected]>
Feature: save_freq of 0 saves every pt
Fix issue with saving model
Adding serialization example
Co-authored-by: Katy Jarvis Griffith <[email protected]>
Mixture of Experts Example
Updated moe to work with different models
Update battery params
Thank you for opening this PR. Since this is a release branch, the PR must complete the release checklist, below:
|
Codecov Report
@@ Coverage Diff @@
## master #111 +/- ##
=========================================
Coverage ? 83.15%
=========================================
Files ? 100
Lines ? 10316
Branches ? 0
=========================================
Hits ? 8578
Misses ? 1738
Partials ? 0 |
Tests run on Apple Silicon Mac by Chris Teubert on 10/20 using python3.11 and 3.10 |
Tests run on Linux machine by Jason Watkins on 10/20 using python 3.8.10 |
Test on windows done by @adam-sweet on 10/20-23 |
Test on macOS with intel done by @mollocon44 on 10/24 |
Release review was conducted by @teubert @matteocorbetta @chetankul @jason-watkins on 10/25. Determined ready to release after the following action items are completed:
|
All review items from release review have been completed. All items from release checklist are complete. Tests are complete. Approved for release |
Release v1.6
Updating from prog_models/algs v1.5
ProgPy v1.6 combined prog_models and prog_algs into a single package, progpy. To upgrade to 1.6, you will need to download the new progpy package (pip install progpy) and update all imports to use progpy.
For example
from prog_models import PrognosticsModel
becomes fromprogpy import PrognosticsModel
, andfrom prog_algs import predictors
becomesfrom progpy import predictors
.