mirror of
https://github.com/sbrl/research-rainfallradar
synced 2024-11-22 09:13:01 +00:00
train_mono_predict: limit label size to 64x64
that's the size the model predicts
This commit is contained in:
parent
51dd484d13
commit
e7410fb480
1 changed files with 2 additions and 1 deletions
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue