Is your feature request related to a problem? Please describe.
|
result[DataStatsKeys.BY_CASE] = [None] * n_cases |
len(result[DataStatsKeys.BY_CASE]) is deprecating because the BY_CASE results are moved from .yaml to _by_case.yaml for performance reasons. the new way to get number of cases from .yaml is n_cases = data_stats["stats_summary#n_cases"].
[None] * n_cases can be removed when all the algorithms adopt the new way.