diff options
| author | skal <pascal.massimino@gmail.com> | 2026-02-13 08:14:07 +0100 |
|---|---|---|
| committer | skal <pascal.massimino@gmail.com> | 2026-02-13 08:14:07 +0100 |
| commit | 10673f00dfece584ba81d581b69c9ba706a5ea5a (patch) | |
| tree | 25f9c0025e4a4b2e93d51711ce721ab2fc7c622c /scripts/train_cnn_v2_full.sh | |
| parent | 8b30cadfc19647487986d14dba9ddba7908dd1d0 (diff) | |
Refactor: Move application entry points to src/app/
Moved main.cc, stub_main.cc, and test_demo.cc from src/ to src/app/
for better organization. Updated cmake/DemoExecutables.cmake paths.
handoff(Claude): App files reorganized into src/app/ directory
Diffstat (limited to 'scripts/train_cnn_v2_full.sh')
| -rwxr-xr-x | scripts/train_cnn_v2_full.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/train_cnn_v2_full.sh b/scripts/train_cnn_v2_full.sh index fc9355a..d6ddbe2 100755 --- a/scripts/train_cnn_v2_full.sh +++ b/scripts/train_cnn_v2_full.sh @@ -40,13 +40,13 @@ INPUT_DIR="training/input" TARGET_DIR="training/target_2" CHECKPOINT_DIR="checkpoints" VALIDATION_DIR="validation_results" -EPOCHS=100 -CHECKPOINT_EVERY=5 +EPOCHS=200 +CHECKPOINT_EVERY=50 BATCH_SIZE=16 # Patch-based training (default) -PATCH_SIZE=32 -PATCHES_PER_IMAGE=64 +PATCH_SIZE=8 +PATCHES_PER_IMAGE=256 DETECTOR="harris" # Full-image training (alternative - uncomment to use) |
