-
Notifications
You must be signed in to change notification settings - Fork 356
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds heatmap mode to feature attribution module and SHAP explainer
PiperOrigin-RevId: 436614966
- Loading branch information
1 parent
0c65066
commit 76379ad
Showing
9 changed files
with
470 additions
and
35 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,33 @@ | ||
.module-container { | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
.module-toolbar { | ||
border-bottom: 1px solid var(--lit-neutral-300); | ||
} | ||
|
||
.module-results-area { | ||
display: flex; | ||
flex: 1 0 auto; | ||
flex-direction: row; | ||
} | ||
|
||
.side-navigation { | ||
border-right: 1px solid var(--lit-neutral-300); | ||
max-width: 300px; | ||
min-width: 300px; | ||
overflow-y: auto; | ||
} | ||
|
||
.main-content { | ||
max-width: calc(100% - 300px); | ||
display: flex; | ||
flex: 1 0 auto; | ||
flex-direction: column; | ||
} | ||
|
||
.module-results { | ||
flex: 1 0 auto; | ||
overflow-y: scroll; | ||
} |
This file contains 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
Oops, something went wrong.