summaryrefslogtreecommitdiff
path: root/config.py
diff options
context:
space:
mode:
authorJordan Gong <jordan.gong@protonmail.com>2021-02-18 18:37:02 +0800
committerJordan Gong <jordan.gong@protonmail.com>2021-02-18 18:37:02 +0800
commit434f0e706649c68125c782060926ba39307c6cf1 (patch)
treee5a5f8555567ad20b8c0096eb615ba10306d6120 /config.py
parent3cc4c018c214c4a0e0fbaaa2996390e66fd8ff2b (diff)
parentf075fde91e6e5e7ac5d0f146df9cfde2b22fa150 (diff)
Merge branch 'python3.8' into python3.7
Diffstat (limited to 'config.py')
-rw-r--r--config.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/config.py b/config.py
index 2470826..c47d2ba 100644
--- a/config.py
+++ b/config.py
@@ -14,7 +14,7 @@ config = {
# Name of dataset (CASIA-B or FVG)
'name': 'CASIA-B',
# Path to dataset root (required)
- 'root_dir': 'data/CASIA-B-MRCNN/SEG',
+ 'root_dir': 'data/CASIA-B-MRCNN-V2/SEG',
# The number of subjects for training
'train_size': 74,
# Number of sampled frames per sequence (Training only)
@@ -25,8 +25,8 @@ config = {
'discard_threshold': 15,
# Number of input channels of model
'num_input_channels': 3,
- # Resolution after resize, height : width should be 2 : 1
- 'frame_size': (64, 32),
+ # Resolution after resize, can be divided 16
+ 'frame_size': (64, 48),
# Cache dataset or not
'cache_on': False,
},