We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46e6166 commit bc2776bCopy full SHA for bc2776b
boiling_learning/datasets/creators.py
@@ -240,7 +240,7 @@ def dataset_post_processor(
240
data_augmentor.as_tf_py_function(pack_tuple=True),
241
num_parallel_calls=AUTOTUNE,
242
)
243
- ds_test = ds_train.map(
+ ds_test = ds_test.map(
244
245
246
@@ -263,4 +263,4 @@ def dataset_post_processor(
263
ds_val = ds_val.prefetch(AUTOTUNE)
264
ds_test = ds_test.prefetch(AUTOTUNE)
265
266
- return (ds_train, ds_val, ds_test)
+ return ds_train, ds_val, ds_test
0 commit comments