Files
cs249r_book/book/tools/figures/__init__.py
2026-06-02 14:19:37 -04:00

20 lines
335 B
Python

"""Book-owned figure helpers used by MLSysBook production tooling."""
from .style import (
COLORS,
WEB_FIG_DPI,
bar_compare,
finalize_web_figure,
set_book_style,
setup_plot,
)
__all__ = [
"COLORS",
"WEB_FIG_DPI",
"bar_compare",
"finalize_web_figure",
"set_book_style",
"setup_plot",
]