Spaces:
Sleeping
Sleeping
| """Player game analysis aggregation helpers.""" | |
| from chess_tutor.analysis.aggregates import ( | |
| mean_abs_heuristic_delta, | |
| mean_abs_heuristic_delta_chained, | |
| per_heuristic_breakdown_rows, | |
| per_heuristic_equal_weight_across_games, | |
| summary_across_heuristics, | |
| summary_across_heuristics_equal_game, | |
| vec_dict_add, | |
| ) | |
| from chess_tutor.analysis.types import MoveHeuristicVectors | |
| __all__ = [ | |
| "MoveHeuristicVectors", | |
| "mean_abs_heuristic_delta", | |
| "mean_abs_heuristic_delta_chained", | |
| "per_heuristic_breakdown_rows", | |
| "per_heuristic_equal_weight_across_games", | |
| "summary_across_heuristics", | |
| "summary_across_heuristics_equal_game", | |
| "vec_dict_add", | |
| ] | |