Skip to content

fix hyper-param name in config file #122

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions configs/rec/crnn/crnn_resnet34.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ train:
dataset_root: path/to/data_lmdb_release/ # Optional, if set, dataset_root will be used as a prefix for data_dir
data_dir: training/
# label_files: # not required when using LMDBDataset
sample_ratios: 1.0
sample_ratio: 1.0
shuffle: True
transform_pipeline:
- DecodeImage:
Expand Down Expand Up @@ -117,7 +117,7 @@ eval:
dataset_root: path/to/data_lmdb_release/
data_dir: validation/
# label_files: # not required when using LMDBDataset
sample_ratios: 1.0
sample_ratio: 1.0
shuffle: False
transform_pipeline:
- DecodeImage:
Expand Down
4 changes: 2 additions & 2 deletions configs/rec/crnn/crnn_vgg7.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ train:
dataset_root: path/to/data_lmdb_release/ # Optional, if set, dataset_root will be used as a prefix for data_dir
data_dir: training/
# label_files: # not required when using LMDBDataset
sample_ratios: 1.0
sample_ratio: 1.0
shuffle: True
transform_pipeline:
- DecodeImage:
Expand Down Expand Up @@ -117,7 +117,7 @@ eval:
dataset_root: path/to/data_lmdb_release/
data_dir: validation/
# label_files: # not required when using LMDBDataset
sample_ratios: 1.0
sample_ratio: 1.0
shuffle: False
transform_pipeline:
- DecodeImage:
Expand Down