Inference #11371
-
Could you point me to the specific parts of the codebase that handle inference in the context of vertical federated learning? If inference is not yet implemented, are there any ongoing discussions or plans for its inclusion? We are particularly interested in performing inference for a gradient boosting model. If inference is not yet implemented, are there any ongoing discussions or plans for its inclusion?" |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
This class handles column-split inference: xgboost/src/predictor/cpu_predictor.cc Line 418 in 5fbab40 The vertical federated learning can handle inference and evaluation: But the feature is overall still a work in progress; no active contributor is working on it at the moment. Related: |
Beta Was this translation helpful? Give feedback.
This class handles column-split inference:
xgboost/src/predictor/cpu_predictor.cc
Line 418 in 5fbab40
The vertical federated learning can handle inference and evaluation:
xgboost/python-package/xgboost/testing/federated.py
Line 79 in 5fbab40
But the feature is overall still a work in progress; no active contributor is working on it at the moment.
Related: