summaryrefslogtreecommitdiff
path: root/text_recognizer/networks/efficientnet/utils.py
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-06-22 22:26:59 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-06-22 22:26:59 +0200
commit1d592a432e57eadff0b94f945e59cbeb95e6a3f0 (patch)
treebf59b08701c28bfd6115ef21c83fc5500f86e6b8 /text_recognizer/networks/efficientnet/utils.py
parent42bf19d923c00c7be66d993d47cebf434035d1be (diff)
Update efficient net config
Diffstat (limited to 'text_recognizer/networks/efficientnet/utils.py')
-rw-r--r--text_recognizer/networks/efficientnet/utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/text_recognizer/networks/efficientnet/utils.py b/text_recognizer/networks/efficientnet/utils.py
index e5b6433..412d07d 100644
--- a/text_recognizer/networks/efficientnet/utils.py
+++ b/text_recognizer/networks/efficientnet/utils.py
@@ -72,9 +72,9 @@ def block_args() -> List[DictConfig]:
"se_ratio",
]
args = [
- [1, 3, (1, 1), 1, 16, 16, 0.25],
+ [1, 3, (1, 1), 1, 32, 16, 0.25],
[2, 3, (2, 2), 6, 16, 24, 0.25],
- [2, 5, (2, 2), 6, 24, 40, 0.25],
+ [2, 5, (2, 1), 6, 24, 40, 0.25],
[3, 3, (2, 1), 6, 40, 80, 0.25],
[3, 5, (2, 1), 6, 80, 112, 0.25],
[4, 5, (1, 1), 6, 112, 192, 0.25],