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
Release v0.2.7: CatBoost standardization and PyPI workflow
- Standardize CatBoost to use XAddEvidence (matching XGBoost/LightGBM)
- Fix README depth=1 documentation (recommended, not required)
- Add PyPI publish workflow with trusted publishing
- Update version from 0.2.7rc2 to 0.2.7 (stable)
- All 106 tests passing
# Make predictions using different methods - Do this BEFORE creating points
358
357
# Original CatBoost predictions
@@ -410,7 +409,7 @@ visualizer.plot_tree(tree_idx=0, title="CatBoost Tree Visualization")
410
409
411
410
The CatBoost implementation has some limitations compared to the XGBoost version:
412
411
413
-
1.Only supports depth=1 trees for interpretability
412
+
1.**Depth recommendation**: While the code supports any tree depth (as long as trees are complete binary), `depth=1` is recommended for better interpretability. Deeper trees work but may be harder to interpret.
0 commit comments