Hi @sivamankomb
A 24-hour run for ~6,000 images is not expected for a small MobileNetV2-alpha-0.35 transfer-learning job unless training is running on CPU, using a large input size, too many epochs, heavy dynamic augmentation, or doing pruning/QAT throughout the full training run.
I think you can refer to the following.
Verify CUDA + cuDNN are installed and being used.

Use the smallest input resolution that still gives acceptable accuracy; if you are at 224×224, try 128×128 first.
Start with a low epoch limit plus early stopping, not a fixed long training run.
Disable pruning for the initial training run;
Use INT8 TFLite quantization for deployment;
Avoid QAT in the first speed-optimized run;
Start with “No Augments,”
You can refer to eIQ Toolkit User Guide for specific content
BR
Harry