From a91f021b5b45c3c196a4095aa7c66cd1d0ba5a3a Mon Sep 17 00:00:00 2001 From: noa Date: Sun, 14 Jul 2024 19:22:42 +0300 Subject: [PATCH] [fixIssueCnn] fix cnn explanation - fix kernel size defintion and update example --- src_py/nerlPlanner/WinWorkerDialogDefnitions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src_py/nerlPlanner/WinWorkerDialogDefnitions.py b/src_py/nerlPlanner/WinWorkerDialogDefnitions.py index cabef3a6e..a4a69864b 100644 --- a/src_py/nerlPlanner/WinWorkerDialogDefnitions.py +++ b/src_py/nerlPlanner/WinWorkerDialogDefnitions.py @@ -59,4 +59,4 @@ KEY_LAYER_METHOD_SELECTION_TEXT = '-LAYER-METHOD-SELECTION-TEXT-' KEY_LAYER_METHOD_SELECTION_BUTTON = '-LAYER-METHOD-SELECTION-BUTTON-' -LAYER_SIZES_HELP_POPUP_STR = 'CNN Layer definition: xksp

\n\nShould be defined only with CNN layer type code\nW - Width\nH - Height\nK - Kernel size x\nS - Stride\nP - Padding\nT - Convolution Type (v-valid, s-same)\n\nExample:\n128x128k3s2p1v represents a CNN layer\ninput size is 128x128\nkernel size 3x3 and stride of 2 with padding 1\nconvolution type is valid.\n\nPooling:\nPooling of single or multiple dimension:\nxp

x

s\nor\np

s\nExamples:\n8x8p2x2s1x1 means size of layer is 8x8\nand pooling is by two rows and tow columns\nand stride of 1 in each direction\n10p2s1 means pool size of 2 and stride of 1\n\nScaling\nx\nor\n' \ No newline at end of file +LAYER_SIZES_HELP_POPUP_STR = 'CNN Layer definition: xxksp

\n\nShould be defined only with CNN layer type code\nW - Width\nH - Height\nD - Depth\nF - Filters\nK - Kernel size xxx\nS - Stride\nP - Padding\nT - Convolution Type (v-valid, s-same)\n\nExample:\n128x128k3x3x1x16s2p1 represents a CNN layer\ninput size is 128x128\nkernel size 3x3x1x16 and stride of 2 with padding 1\nconvolution type is valid.\n\nPooling:\nPooling of single or multiple dimension:\nxp

x

s\nor\np

s\nExamples:\n8x8p2x2s1x1 means size of layer is 8x8\nand pooling is by two rows and tow columns\nand stride of 1 in each direction\n10p2s1 means pool size of 2 and stride of 1\n\nScaling\nx\nor\n' \ No newline at end of file