| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2026-06-25 | 530 Bytes | |
| v0.17.6 source code.tar.gz | 2026-06-25 | 5.7 MB | |
| v0.17.6 source code.zip | 2026-06-25 | 6.5 MB | |
| Totals: 3 Items | 12.3 MB | 0 | |
What's new
Preprocessing progress callback — implement in your subclass to receive live progress updates (0.0 to 1.0) during feature preprocessing. Works with pandas, Dask, and Ray backends out of the box.
:::python
class MyCallback(Callback):
def on_preprocess_progress(self, progress: float, **kwargs):
print(f"Preprocessing: {progress:.0%}")
Fixes
- MLflow 3.x filesystem tracking store compatibility in CI
- GPU Docker images now correctly ship CUDA-enabled PyTorch wheels (cu126)