I followed this tutorial for implementing Tensorflow Object Detection API.
The preferred way is using pretrained models.
But for some cases, we need to train from scratch.
For that we just need to comment out two lines in the configuration file as
#fine_tune_checkpoint: "object_detection/data/mobilenet_v1_1.0_224/mobilenet_v1_1.0_224.ckpt"
#from_detection_checkpoint: true
If I want to initialize weight with Xavier weight initialization, how can I do that?