Update Faster R-CNN constituent networks and example to support mixed precision.
Each model output that feeds a loss needs to output an fp32 float. This can be accomplished by adding a linear activation with float32 type without impacting the network:
output = layers.Activation('linear', dtype='float32', name='predictions')(input)