Skip to content

v0.3.0

Compare
Choose a tag to compare
@Lucaweihs Lucaweihs released this 04 May 23:06
· 480 commits to main since this release
33f2f73

AllenAct 0.3.0 Release Notes

This minor release brings:

  • Command line updates to experiment runs - often you might want to be able to specify certain experiment parameters from the command line (e.g. which gpus to use or the number of processes to train with). We have now enabled this functionality with the --config_kwargs flag. This flag can be used to pass parameters directly to the initializer of your ExperimentConfig class before training/evaluation enabling huge amounts of flexibility in how you want your experiment to run.
  • Improved logging - logs are now semantically colored to highlight "info", "warning", and "error" messages. This also includes a bug fix where failing to call init_logging before get_logger would result in print statements being hidden.
  • Less mysterious testing - using AllenAct for testing was previously somewhat mysterious/magical as we made several assumptions regarding how directories (+ checkpoint file names) were named. This has now been simplified, this simplification does introduce a minor backwards incompatible change so please see our documentation for how evaluation should now be run.