From 4c7ca0f06eb180f4a83641466014865c334e8987 Mon Sep 17 00:00:00 2001 From: skal Date: Sun, 22 Mar 2026 10:43:16 +0100 Subject: docs(cnn_v3): add full Old House example to HOW_TO_CNN §1b MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit handoff(Gemini): added render + batch-pack example commands at end of section 1b --- cnn_v3/training/gen_sample | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100755 cnn_v3/training/gen_sample (limited to 'cnn_v3/training') diff --git a/cnn_v3/training/gen_sample b/cnn_v3/training/gen_sample deleted file mode 100755 index 21519f1..0000000 --- a/cnn_v3/training/gen_sample +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/bin/env bash -# gen_sample — pack an input/target photo pair into a CNN v3 sample directory. -# -# Usage: -# gen_sample -# -# Example: -# gen_sample input/photo1.jpg target_1/photo1_out.png dataset/simple/sample_001 - -set -euo pipefail - -if [ $# -ne 3 ]; then - echo "Usage: gen_sample " >&2 - exit 1 -fi - -SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)" -python3 "$SCRIPT_DIR/pack_photo_sample.py" \ - --photo "$1" \ - --target "$2" \ - --output "$3" -- cgit v1.2.3