how to solve such type of warrings
Hi @Richa_Nayak, Those are warnings , you can safely ignore the warning log. Those warnings will not affect the performance of the code.
If you want to eliminate those warnings, before importing tensorflow set the environmental of TF log level to 3 to suppress those warnings.
import os
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3'
import tensorflow as tf
Thank You.