From 130d70ea130242533a0fd3a7ffeabdb68598c88e Mon Sep 17 00:00:00 2001 From: skal Date: Thu, 26 Mar 2026 07:10:19 +0100 Subject: fix(cnn_v3/training): fix defaults and help strings across py tools MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - train_cnn_v3.py: enc-channels 4,8→8,16; checkpoint-every 50→100; add help strings for epochs/batch-size/lr/checkpoint-dir - gen_test_vectors.py: add help strings for --W/--H/--seed - export_cnn_v3_weights.py: fix --output help string (export/→export) --- cnn_v3/training/export_cnn_v3_weights.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cnn_v3/training/export_cnn_v3_weights.py') diff --git a/cnn_v3/training/export_cnn_v3_weights.py b/cnn_v3/training/export_cnn_v3_weights.py index 2fa83d1..67330a6 100644 --- a/cnn_v3/training/export_cnn_v3_weights.py +++ b/cnn_v3/training/export_cnn_v3_weights.py @@ -189,7 +189,7 @@ def main() -> None: p = argparse.ArgumentParser(description='Export CNN v3 trained weights to .bin') p.add_argument('checkpoint', help='Path to .pth checkpoint file') p.add_argument('--output', default='export', - help='Output directory (default: export/)') + help='Output directory (default: export)') p.add_argument('--html', action='store_true', help=f'Also update {_WEIGHTS_JS_DEFAULT} with base64-encoded weights') p.add_argument('--html-output', default=None, metavar='PATH', -- cgit v1.2.3