Description
ML GeneralizedLinearRegression only support lowercase input for family and link currently. For example, the following code will throw exception:
val trainer = new GeneralizedLinearRegression().setFamily("Gamma")
However, R glm only accepts families: gaussian, binomial, poisson, Gamma. We should make family and link case insensitive.