train_mono_predict: limit label size to 64x64

that's the size the model predicts
This commit is contained in:
Starbeamrainbowlabs 2022-11-25 17:47:17 +00:00
parent 51dd484d13
commit e7410fb480
Signed by: sbrl
GPG key ID: 1BE5172E637709C2

View file

@ -74,7 +74,8 @@ def run(args):
# Note that if using a directory of input files, the output order is NOT GUARANTEED TO BE THE SAME. In fact, it probably won't be (see dataset_mono for more details).
dataset = dataset_mono_predict(
dirpath_input=args.input,
parallel_reads_multiplier=args.read_multiplier
parallel_reads_multiplier=args.read_multiplier,
shape_water_desired=[64, 64]
)
# for items in dataset_train.repeat(10):