v0.3.0
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 yourExperimentConfig
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
beforeget_logger
would result inprint
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.