9#include <xgboost/cache.h>
34 std::uint32_t version{0};
42 void Update(std::uint32_t v) { version += v; }
43 void Reset() { version = 0; }
51 std::size_t
static constexpr DefaultSize() {
return 64; }
57 if (device != Context::kCpuId) {
58 p_cache->predictions.SetDevice(device);
110 uint32_t tree_end = 0)
const = 0;
127 uint32_t tree_begin = 0, uint32_t tree_end = 0)
const = 0;
142 std::vector<bst_float>* out_preds,
144 unsigned tree_end = 0,
145 bool is_column_split =
false)
const = 0;
159 unsigned tree_end = 0)
const = 0;
179 std::vector<bst_float>
const *tree_weights =
nullptr,
180 bool approximate =
false,
int condition = 0,
181 unsigned condition_feature = 0)
const = 0;
183 virtual void PredictInteractionContributions(
186 std::vector<bst_float>
const *tree_weights =
nullptr,
187 bool approximate =
false)
const = 0;
204#define XGBOOST_REGISTER_PREDICTOR(UniqueId, Name) \
205 static DMLC_ATTRIBUTE_UNUSED ::xgboost::PredictorReg& \
206 __make_##PredictorReg##_##UniqueId##__ = \
207 ::dmlc::Registry<::xgboost::PredictorReg>::Get()->__REGISTER__(Name)
Common base class for function registry.
Definition registry.h:151
Thread-aware FIFO cache for DMatrix related data.
Definition cache.h:26
std::shared_ptr< PredictionCacheEntry > CacheItem(std::shared_ptr< DMatrix > m, Args const &... args)
Cache a new DMatrix if it's not in the cache already.
Definition cache.h:145
Internal data structured used by XGBoost during training.
Definition data.h:509
Definition host_device_vector.h:87
A container for managed prediction caches.
Definition predictor.h:49
Performs prediction on individual training instances or batches of instances for GBTree.
Definition predictor.h:72
static Predictor * Create(std::string const &name, Context const *ctx)
Creates a new Predictor*.
Definition predictor.cc:27
void InitOutPredictions(const MetaInfo &info, HostDeviceVector< bst_float > *out_predt, const gbm::GBTreeModel &model) const
Initialize output prediction.
Definition predictor.cc:46
virtual void Configure(Args const &)
Configure and register input matrices in prediction cache.
Definition predictor.cc:25
virtual void PredictContribution(DMatrix *dmat, HostDeviceVector< bst_float > *out_contribs, const gbm::GBTreeModel &model, unsigned tree_end=0, std::vector< bst_float > const *tree_weights=nullptr, bool approximate=false, int condition=0, unsigned condition_feature=0) const =0
feature contributions to individual predictions; the output will be a vector of length (nfeats + 1) *...
virtual void PredictLeaf(DMatrix *dmat, HostDeviceVector< bst_float > *out_preds, const gbm::GBTreeModel &model, unsigned tree_end=0) const =0
predict the leaf index of each tree, the output will be nsample * ntree vector this is only valid in ...
virtual bool InplacePredict(std::shared_ptr< DMatrix > p_fmat, const gbm::GBTreeModel &model, float missing, PredictionCacheEntry *out_preds, uint32_t tree_begin=0, uint32_t tree_end=0) const =0
Inplace prediction.
virtual void PredictInstance(const SparsePage::Inst &inst, std::vector< bst_float > *out_preds, const gbm::GBTreeModel &model, unsigned tree_end=0, bool is_column_split=false) const =0
online prediction function, predict score for one instance at a time NOTE: use the batch prediction i...
virtual void PredictBatch(DMatrix *dmat, PredictionCacheEntry *out_preds, const gbm::GBTreeModel &model, uint32_t tree_begin, uint32_t tree_end=0) const =0
Generate batch predictions for a given feature matrix.
span class implementation, based on ISO++20 span<T>. The interface should be the same.
Definition span.h:424
Copyright 2014-2023, XGBoost Contributors.
A device-and-host vector abstraction layer.
Copyright 2015-2023 by XGBoost Contributors.
Copyright 2015-2023 by XGBoost Contributors.
Copyright 2019-2023, XGBoost Contributors.
Definition linear_updater.h:23
namespace of xgboost
Definition base.h:90
Runtime context for XGBoost.
Definition context.h:84
Contains pointer to input matrix and associated cached predictions.
Definition predictor.h:30
void Update(std::uint32_t v)
Update the cache entry by number of versions.
Definition predictor.h:42
Registry entry for predictor.
Definition predictor.h:202
Definition gbtree_model.h:84