Skip to content
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

Update testing branch with main #20

Merged
merged 8 commits into from
Aug 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .flake8
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
[flake8]

# VScode adds blank whitespaces
extend-ignore = W293
# More manageable for desktop editing
max-line-length = 140
per-file-ignores =

per-file-ignores =
# Imported but unused / Unable to detect names
__init__.py: F401, F403
obsidian/dash/*: F401, F403
Expand All @@ -16,6 +18,4 @@ exclude =
demo/
logs/
dev/
source/
docs/
build/
docs/
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,16 @@
### Added
- Campaign.Explainer now added to PyTests
- Docstrings and typing to Explainer methods
- Campaign.out property to dynamically capture measured responses "y" or objectives as appropriate
- Campaign.evaluate method to map optimizer.evaluate method

### Modified
- Fixed SHAP explainer analysis and visualization functions
- Changed SHAP visualization colors to use obsidian branding
- Moved sensitivity method from campaign.analysis to campaign.explainer
- Moved Explainer testing from optimizer pytests to campaign pytests
- Generalized plotting function MOO_results and renamed optim_progress
- Campaign analysis and plotting methods fixed for

### Removed
- Removed code chunks regarding unused optional inputs to PDP ICE function imported from SHAP GitHub
Expand Down
316 changes: 316 additions & 0 deletions docs/_static/obsidian_logo_dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
"alt_text": "obsidian - Home",
"text": "obsidian APO",
"image_light": "_static/obsidian_logo.svg",
"image_dark": "_static/obsidian_logo.svg",
"image_dark": "_static/obsidian_logo_dark.svg",
},
"icon_links": [
{
Expand Down
Loading
Loading