Please indicate the following details about the environment in which you found the bug:
SDMetrics version:
Python version:
Operating System:
Error Description
Currently, the validate method on BaseReport is a public method. This should be changed to a private method (_validate) as it is not part of the public API.
Steps to reproduce
from sdmetrics.reports.single_tableimport QualityReport
report = QualityReport()
report.validate(real_data, synthetic_data, metadata)
Environment Details
Please indicate the following details about the environment in which you found the bug:
Error Description
Currently, the
validate
method onBaseReport
is a public method. This should be changed to a private method (_validate
) as it is not part of the public API.Steps to reproduce