You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Write a tutorial for integrating Treelite into a C++ project (using CMake).
Write a tutorial for integrating Treelite into a Python package. In particular, library writers should be encouraged to produce treelite.Model object, rather than a custom object with a native Treelite handle.
The text was updated successfully, but these errors were encountered:
Currently, Treelite object is a dumb structure, which library writers are expected to fill correctly. It's easy to get it wrong, e.g. by forgetting to fill a field or violating a constraint. See #474 for a recent incident. We need better API design that makes it easy to correctly build tree models. Validation should be built-in.
treelite.Model
object, rather than a custom object with a native Treelite handle.The text was updated successfully, but these errors were encountered: