Skip to content

Commit

Permalink
train_tensorflow_orientation.py: size for crop
Browse files Browse the repository at this point in the history
  • Loading branch information
odulcy-mindee committed Apr 16, 2024
1 parent ea58710 commit 1049fab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion references/classification/train_tensorflow_orientation.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def main(args):
if not isinstance(args.workers, int):
args.workers = min(16, mp.cpu_count())

input_size = (256, 256) if args.type == "page" else (32, 32)
input_size = (512, 512) if args.type == "page" else (128, 128)

# AMP
if args.amp:
Expand Down

0 comments on commit 1049fab

Please sign in to comment.