-
Notifications
You must be signed in to change notification settings - Fork 355
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This module displays a table summarizing the minimum, median, mean, and maximum salience values for each feature in the dataset. Only `FeatureSalience` is supported, and salience can be provided by the model (i.e., intrinsic) or retrieved from an interpreter (e.g., derived). Controls are provided to enable/disable the compatible salience providers, and to facet the current dataset into subsets. A table is created for each salience provider and each facet. Tables are shown in an expansion panel so users can choose to show/hide data as they see fit. PiperOrigin-RevId: 426202158
- Loading branch information
1 parent
f08d994
commit 45e526c
Showing
6 changed files
with
454 additions
and
40 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
.module-toolbar { | ||
border-bottom: 1px solid var(--lit-neutral-300); | ||
} | ||
|
||
.attribution-container { | ||
border-bottom: 1px solid var(--lit-neutral-300); | ||
} | ||
|
||
.expansion-header { | ||
width: calc(100% - 16px); | ||
height: 30px; | ||
padding: 2px 8px; | ||
display: flex; | ||
flex-direction: row; | ||
cursor: pointer; | ||
align-items: center; | ||
justify-content: space-between; | ||
background-color: var(--lit-neutral-100); | ||
color: var(--lit-majtonal-nv-800); | ||
font-weight: bold; | ||
} | ||
|
||
.expansion-header:not(:only-child) { | ||
border-bottom: 1px solid var(--lit-neutral-200); | ||
} |
Oops, something went wrong.