{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "## Training tweaks for an RNN" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "hide_input": true }, "outputs": [], "source": [ "from fastai.gen_doc.nbdoc import *\n", "from fastai.callbacks.rnn import * " ] }, { "cell_type": "code", "execution_count": null, "metadata": { "hide_input": true }, "outputs": [], "source": [ "from fastai.gen_doc.nbdoc import *\n", "from fastai.callbacks.rnn import *" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This callback regroups a few tweaks to properly train RNNs. They all come from [this article](https://arxiv.org/abs/1708.02182) by Stephen Merity et al.\n", "\n", "**Activation Regularization:** on top of weight decay, we apply another form of regularization that is pretty similar and consists in adding to the loss a scaled factor of the sum of all the squares of the outputs (with dropout applied) of the various layers of the RNN. Intuitively, weight decay tries to get the network to learn small weights, this is to get the model to learn to produce smaller activations.\n", "\n", "**Temporal Activation Regularization:** lastly, we add to the loss a scaled factor of the sum of the squares of the `h_(t+1) - h_t`, where `h_i` is the output (before dropout is applied) of one layer of the RNN at the time step i (word i of the sentence). This will encourage the model to produce activations that don’t vary too fast between two consecutive words of the sentence. " ] }, { "cell_type": "code", "execution_count": null, "metadata": { "hide_input": true }, "outputs": [ { "data": { "text/markdown": [ "
class
RNNTrainer
[source]RNNTrainer
(**`learn`**, **`alpha`**:`float`=***`0.0`***, **`beta`**:`float`=***`0.0`***) :: [`LearnerCallback`](/basic_train.html#LearnerCallback)\n",
"\n",
"[`Callback`](/callback.html#Callback) that regroups lr adjustment to seq_len, AR and TAR. "
],
"text/plain": [
"on_epoch_begin
[source]on_epoch_begin
(**\\*\\*`kwargs`**)\n",
"\n",
"Reset the hidden state of the model. "
],
"text/plain": [
"on_loss_begin
[source]on_loss_begin
(**`last_output`**:`Tuple`\\[`Tensor`, `Tensor`, `Tensor`\\], **\\*\\*`kwargs`**)\n",
"\n",
"Save the extra outputs for later and only returns the true output. "
],
"text/plain": [
"on_backward_begin
[source]on_backward_begin
(**`last_loss`**:`Rank0Tensor`, **`last_input`**:`Tensor`, **\\*\\*`kwargs`**)\n",
"\n",
"Apply AR and TAR to `last_loss`. "
],
"text/plain": [
"