v1.5
- Add
LambdaCallback
to more easily define a callback from lambdas or functions. - In Jupyter Notebooks, when coloring is enabled, the print rate of progress output is limited to one output every 0.1 seconds. This solves the slowness problem (and the memory problem on Firefox) when there is a great number of steps per epoch.
- Add
return_dict_format
argument totrain_on_batch
andevaluate_on_batch
and allows to return predictions and ground truths inevaluate_*
even whenreturn_dict_format=True
. Furthermore,Experiment.test*
now supportreturn_pred=True
andreturn_ground_truth=True
. - Split Tips and Tricks example into two examples: Tips and Tricks and Sequence Tagging With an RNN.