I'm trying to build a binary:logistic xgboost model, but I want the initial estimate of probability to be the value from a lookup table (i.e. a particular set of x values has a single given y value based on the lookup table). I've found the xgb_model argument, but I don't know how to convert a table with probabilities into an xgb_model where the predictor is perfectly preserved.
The challenges here are
- The lookup table is not appropriate to be used as a binary:logistic model as the predictor values are not limited to 0 and 1
- I don't know how to ensure that the final output is a 1-1 match. I'm considering something which is significantly overfitted, but I don't know how to implement that in xgboost.