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

[MAINTENANCE] Update KlDivergence to KLDivergence. #9501

Merged
merged 3 commits into from
Feb 21, 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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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