Preprocessing function of inception v3 in Keras

This is preprocessing function of inception v3 in Keras. It is totally different from other models preprocessing. def preprocess_input(x): x /= 255. x -= 0.5 x *= 2. return x 1. Why