mirror of
https://github.com/harvard-edge/cs249r_book.git
synced 2026-07-16 06:07:17 -05:00
20 lines
335 B
Python
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",
|
|
]
|