remove useless config's parameters

This commit is contained in:
linqingke 2020-11-16 19:25:56 +08:00
parent f1e0a673ac
commit 5e4bd67e32
14 changed files with 0 additions and 3 deletions

View File

@ -171,7 +171,6 @@ Arguments:
* `--TRAIN_DATASET_SIZE` Training dataset size.
* `--TEST_DATASET_PATH` The path to test dataset.
* `--TEST_BATCH_SIZE` Test batch size.
* `--TEST_DATASET_SIZE`Test dataset size.
* `--TRAIN_EPOCHS`Total training epochs.
* `--CKPT_PATH`The path to model checkpoint file, can be used to resume training and evaluation.
* `--SAVE_PATH`The path to save model checkpoint file.

View File

@ -29,7 +29,6 @@ class Config_CNNCTC():
TRAIN_BATCH_SIZE = 192
TEST_DATASET_PATH = 'CNNCTC_Data/IIIT5k_3000'
TEST_BATCH_SIZE = 256
TEST_DATASET_SIZE = 2976
TRAIN_EPOCHS = 3
# training config

View File

@ -41,7 +41,6 @@ config = ed({
"TRAIN_LONG_SIZE": 640,
"TRAIN_DATASET_SIZE": 1000,
"TRAIN_MIN_SCALE": 0.4,
"TRAIN_BUFFER_SIZE": 8,
"TRAIN_BATCH_SIZE": 4,
"TRAIN_REPEAT_NUM": 1800,
"TRAIN_DROP_REMAINDER": True,