Added
- Add modular experiment logging for finetuning with
experiment_loggerparameter, includingWandbLoggerfor W&B tracking and aFinetuningLoggerprotocol for custom integrations. (#815) - Add three-tier authentication flow: browser-based login for graphical environments, headless interactive login with clipboard copy for SSH/cluster sessions, and clear step-by-step instructions for fully non-interactive environments. (#862)
Changed
-
- Optimize regressor predict method for memory efficiency
- Average ensemble outputs on-the-fly instead of accumulating all outputs
- Reduces memory usage by avoiding storage of all intermediate outputs, especially beneficial for large
n_estimators(#745)
- Optimize regressor predict method for memory efficiency
Fixed
- Fix bugs where fit_mode="fit_with_cache" produced slightly incorrect predictions in v2.5 (but not v2): thinking tokens were added twice,
inference_precisionflag was not applied correctly. (#852)