Skip to content

Commit

Permalink
[MAINTENANCE] Update KlDivergence to KLDivergence. (#9501)
Browse files Browse the repository at this point in the history
  • Loading branch information
billdirks committed Feb 21, 2024
1 parent 9bd0bd4 commit 2c42adb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion great_expectations/expectations/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
ExpectColumnDistinctValuesToEqualSet,
)
from .expect_column_kl_divergence_to_be_less_than import (
ExpectColumnKlDivergenceToBeLessThan,
ExpectColumnKLDivergenceToBeLessThan,
)
from .expect_column_max_to_be_between import ExpectColumnMaxToBeBetween
from .expect_column_mean_to_be_between import ExpectColumnMeanToBeBetween
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
logging.captureWarnings(True)


class ExpectColumnKlDivergenceToBeLessThan(ColumnAggregateExpectation):
class ExpectColumnKLDivergenceToBeLessThan(ColumnAggregateExpectation):
"""Expect the Kulback-Leibler (KL) divergence (relative entropy) of the specified column with respect to the partition object to be lower than the provided threshold.
KL divergence compares two distributions. The higher the divergence value (relative entropy), the larger \
Expand Down

0 comments on commit 2c42adb

Please sign in to comment.