summaryrefslogtreecommitdiff
path: root/workspaces/main
diff options
context:
space:
mode:
authorskal <pascal.massimino@gmail.com>2026-02-13 08:24:36 +0100
committerskal <pascal.massimino@gmail.com>2026-02-13 08:24:36 +0100
commit064ebb52847949d62f81873f5e44f12bca4d2e60 (patch)
tree217fb2a45b1d4a76d6ed3d0e062085fe39cc0f5e /workspaces/main
parenteb15703a3f87e4eadc8839b06de12b9c6ec54023 (diff)
Add weights/ subdirectory to workspaces for CNN training outputs
Each workspace now has a weights/ directory to store binary weight files from CNN training (e.g., cnn_v2_weights.bin). Changes: - Created workspaces/{main,test}/weights/ - Moved cnn_v2_weights.bin → workspaces/main/weights/ - Updated assets.txt reference - Updated training scripts and export tool paths handoff(Claude): Workspace weights/ directories added
Diffstat (limited to 'workspaces/main')
-rw-r--r--workspaces/main/assets.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/workspaces/main/assets.txt b/workspaces/main/assets.txt
index 3ca0ace..e575b41 100644
--- a/workspaces/main/assets.txt
+++ b/workspaces/main/assets.txt
@@ -45,7 +45,7 @@ SHADER_CNN_WEIGHTS, NONE, shaders/cnn/cnn_weights_generated.wgsl, "CNN Weights (
SHADER_CNN_LAYER, NONE, shaders/cnn/cnn_layer.wgsl, "CNN Layer Shader"
SHADER_CNN_V2_STATIC, NONE, shaders/cnn_v2/cnn_v2_static.wgsl, "CNN v2 Static Features"
SHADER_CNN_V2_COMPUTE, NONE, shaders/cnn_v2/cnn_v2_compute.wgsl, "CNN v2 Compute (Storage Buffer)"
-WEIGHTS_CNN_V2, NONE, cnn_v2_weights.bin, "CNN v2 Binary Weights"
+WEIGHTS_CNN_V2, NONE, weights/cnn_v2_weights.bin, "CNN v2 Binary Weights"
SHADER_SOLARIZE, NONE, shaders/solarize.wgsl, "Solarize Shader"
SHADER_DISTORT, NONE, shaders/distort.wgsl, "Distort Shader"
SHADER_CHROMA_ABERRATION, NONE, shaders/chroma_aberration.wgsl, "Chroma Aberration Shader"