def apply_filler(self, x_train, y_train, x_test): model = xgboost.XGBRegressor() model = model.fit(x_train, y_train) return model.predict(x_test)