Skip to content

[FEA] Ability to export cuML RF models and run prediction on machines without a GPU #3853

Closed
@hcho3

Description

@hcho3

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:

  1. Export cuML RF as a Treelite checkpoint checkpoint.tl.
  2. Copy the checkpoint file checkpoint.tl to the target machine (which has no GPU)
  3. Install Treelite package on the target machine.
  4. Load the checkpoint checkpoint.tl on the target machine, by calling treelite.Model.deserialize(...).
  5. 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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions