79804193

Date: 2025-10-29 20:27:44
Score: 0.5
Natty:
Report link

Your order of parentheses are wrong:

train_ds      = train_ds.map(lambda x, y: (tf.image.resize(x, size)), y)

Should be:

train_ds      = train_ds.map(lambda x, y: (tf.image.resize(x, size), y))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Kevin Flynn