What needs to be the structure of weight_column in Tensorflow estimators?Does the rare class need to have higher weights? If class 0 - 90% of labels, class 1 is 10% of labels, then should my weight_column need to be
labels : [0,0,0,1]
weight_column: [0.1,0.1,0.1,0.9]
Is my understanding correct?. Will the estimator ignore this column internally so as to not treat it as a feature?