Source code for tart.utils.tart_utils
from argparse import Namespace
from rich.console import Console
console = Console()
[docs]def print_header() -> None:
"""print tart header to console"""
header = """ _ _
| |_ __ _ _ __ | |_
| __| / _` || '__|| __|
| |_ | (_| || | | |_
\__| \__,_||_| \__|"""
console.print(f"[bright_green]{header}[/bright_green]\n")
[docs]def summarize_tart_run(args: Namespace) -> None:
"""print tart run summary to console
Args:
args (Namespace): tart configs
"""
tart = "\[tart]"
console.print(f"\n[bright_green] ======== run summary ======== [/bright_green]")
console.print(f"[bright_green] {tart} [/bright_green] mode {'test' if args.test else 'train'}")
console.print(f"[bright_green] {tart} [/bright_green] dataset {args.dataset}")
console.print(f"[bright_green] {tart} [/bright_green] n_iters {args.n_iters}")
console.print(f"[bright_green] {tart} [/bright_green] n_batches {args.n_batches}")
console.print(f"[bright_green] {tart} [/bright_green] batch_size {args.batch_size}")
console.print(f"[bright_green] {tart} [/bright_green] n_train {args.n_batches} x {args.batch_size} = {args.n_train}")
console.print(f"[bright_green] {tart} [/bright_green] n_test 0.2 x {args.n_train} = {args.n_test}")
console.print("[bright_green] ============================= [bright_green]\n")