Tensorflow 2.0 - Training model issues

I am currently learning how to train a model object detection using google colab and tensorflow 2.0 based on this website link.
During training the model process we received this output in the terminal.

2023-09-21 04:38:08.755884: E tensorflow/core/grappler/optimizers/meta_optimizer.cc:954] layout failed: INVALID_ARGUMENT: Size of values 0 does not match size of permutation 4 @ fanin shape inEfficientDet-D1/model/stack_0/block_1/drop/dropout/SelectV2-2-TransposeNHWCToNCHW-LayoutOptimizer ^C

Does anyone know what is the actual output? Is this process interrupted or it is something expected?

Thank you!

Hi @ml_elec

Welcome to the TensorFlow Forum!

It seems the error is related to the different input shape sequence order what model is expecting and what exist in the dataset. Please provide minimal reproducible code to replicate the error and understand the issue.