Skip to content

Release v0.10.2

Compare
Choose a tag to compare
@alexsherstinsky alexsherstinsky released this 21 Mar 20:24
· 10 commits to master since this release
30fe47b

What's New

  • Add support for RSLoRA and DoRA by @arnavgarg1 in #3948
    To enable, set the corresponding flag to true in config (can be used in conjunction):
    adapter:
        type:  lora
        use_rslora:  false
        use_dora: false
  • Add support for eval batch size tuning for LLMs on local backend by @arnavgarg1 in #3957
    To enable, set "eval_batch_size" to "auto" in the trainer section:
    trainer:
        eval_batch_size:  auto
  • Enable loading model weights from training checkpoint by @geoffreyangus in #3969
    To enable, pass from_checkpoint=True to LudwigModel.load():
LudwigModel.load(model_dir, from_checkpoint=True)

Full Changelog

New Contributors

Full Changelog: v0.10.1...v0.10.2