Description
Is your feature request related to a problem? Please describe.
This is similar to #3556 and #3822, but for random forests specifically.
Describe the solution you'd like
When the latest Treelite (1.3.0) is brought into cuML, we will be able to convert cuML RF to a Treelite object and then serialize it as a checkpoint. Treelite now offers a binary checkpoint format so that tree models can be exchanged between different machines.
Running prediction on machines without GPUs will proceed as follows:
- Export cuML RF as a Treelite checkpoint
checkpoint.tl
. - Copy the checkpoint file
checkpoint.tl
to the target machine (which has no GPU) - Install Treelite package on the target machine.
- Load the checkpoint
checkpoint.tl
on the target machine, by callingtreelite.Model.deserialize(...)
. - Make prediction, by calling
treelite.gtil.predict(...)
.
Compatibility considerations.
Checkpoints are specific to the version of Treelite with which it was produced. Each version of cuML is pinned to a specific version of Treelite, and the target machine must have the exact version of Treelite installed.
For example, the upcoming version of cuML will have Treelite 1.3.0, so the target machine must also have Treelite 1.3.0 installed.