Skip to content

Commit

Permalink
Merge pull request #53 from adamkarvonen/hide_absorption_stddev
Browse files Browse the repository at this point in the history
hide stddev from default display for absorption
  • Loading branch information
hijohnnylin authored Jan 28, 2025
2 parents f551e7b + d970f05 commit 155afbc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
3 changes: 0 additions & 3 deletions sae_bench/evals/absorption/eval_output.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,14 @@ class AbsorptionMeanMetrics(BaseMetrics):
std_dev_absorption_fraction_score: float = Field(
title="Standard Deviation of Absorption Fraction Score",
description="Standard deviation of the absorption fraction scores across all letters",
json_schema_extra=DEFAULT_DISPLAY,
)
std_dev_full_absorption_score: float = Field(
title="Standard Deviation of Full Absorption Score",
description="Standard deviation of the full absorption scores across all letters",
json_schema_extra=DEFAULT_DISPLAY,
)
std_dev_num_split_features: float = Field(
title="Standard Deviation of Number of Split Features",
description="Standard deviation of the number of split features across all letters",
json_schema_extra=DEFAULT_DISPLAY,
)


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,20 +95,17 @@
"std_dev_absorption_fraction_score": {
"description": "Standard deviation of the absorption fraction scores across all letters",
"title": "Standard Deviation of Absorption Fraction Score",
"type": "number",
"ui_default_display": true
"type": "number"
},
"std_dev_full_absorption_score": {
"description": "Standard deviation of the full absorption scores across all letters",
"title": "Standard Deviation of Full Absorption Score",
"type": "number",
"ui_default_display": true
"type": "number"
},
"std_dev_num_split_features": {
"description": "Standard deviation of the number of split features across all letters",
"title": "Standard Deviation of Number of Split Features",
"type": "number",
"ui_default_display": true
"type": "number"
}
},
"required": [
Expand Down

0 comments on commit 155afbc

Please sign in to comment.