Skip to content
Snippets Groups Projects
Commit 885c641c authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Use padder by default on stock configurations

parent 597fa1be
No related branches found
No related tags found
1 merge request!353DFV and multiple fixes
...@@ -33,7 +33,8 @@ PAD_CONST = 51 ...@@ -33,7 +33,8 @@ PAD_CONST = 51
preprocessor = Preprocessor( preprocessor = Preprocessor(
crop=NoCrop(), crop=NoCrop(),
mask=TomesLeeMask(filter_height=FILTER_HEIGHT, filter_width=FILTER_WIDTH), mask=TomesLeeMask(filter_height=FILTER_HEIGHT, filter_width=FILTER_WIDTH,
padder=Padder(padding_width=PAD_WIDTH, padding_constant=PAD_CONST)),
normalize=HuangNormalization(padding_width=PAD_WIDTH, normalize=HuangNormalization(padding_width=PAD_WIDTH,
padding_constant=PAD_CONST), padding_constant=PAD_CONST),
filter=NoFilter(), filter=NoFilter(),
......
...@@ -33,7 +33,8 @@ PAD_CONST = 51 ...@@ -33,7 +33,8 @@ PAD_CONST = 51
preprocessor = Preprocessor( preprocessor = Preprocessor(
crop=NoCrop(), crop=NoCrop(),
mask=TomesLeeMask(filter_height=FILTER_HEIGHT, filter_width=FILTER_WIDTH), mask=TomesLeeMask(filter_height=FILTER_HEIGHT, filter_width=FILTER_WIDTH,
padder=Padder(padding_width=PAD_WIDTH, padding_constant=PAD_CONST)),
normalize=HuangNormalization(padding_width=PAD_WIDTH, normalize=HuangNormalization(padding_width=PAD_WIDTH,
padding_constant=PAD_CONST), padding_constant=PAD_CONST),
filter=NoFilter(), filter=NoFilter(),
......
...@@ -33,7 +33,8 @@ PAD_CONST = 51 ...@@ -33,7 +33,8 @@ PAD_CONST = 51
preprocessor = Preprocessor( preprocessor = Preprocessor(
crop=NoCrop(), crop=NoCrop(),
mask=TomesLeeMask(filter_height=FILTER_HEIGHT, filter_width=FILTER_WIDTH), mask=TomesLeeMask(filter_height=FILTER_HEIGHT, filter_width=FILTER_WIDTH,
padder=Padder(padding_width=PAD_WIDTH, padding_constant=PAD_CONST)),
normalize=HuangNormalization(padding_width=PAD_WIDTH, normalize=HuangNormalization(padding_width=PAD_WIDTH,
padding_constant=PAD_CONST), padding_constant=PAD_CONST),
filter=NoFilter(), filter=NoFilter(),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment