Skip to content

Commit

Permalink
Pushing changes to GitHub Pages.
Browse files Browse the repository at this point in the history
  • Loading branch information
docs-sched-rebuild committed Jan 11, 2024
1 parent ca3fe61 commit 1178fc4
Show file tree
Hide file tree
Showing 624 changed files with 61,626 additions and 536 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,19 @@
"- <b>per device batch size for evaluation</b>: see above"
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "c9e83d47-380c-4118-bc29-8bc108163fa0",
"metadata": {},
"outputs": [],
"source": [
"# If only 1 GPU are available, starts a single process to use that GPU\n",
"from torch.cuda import device_count\n",
"num_gpus = device_count()\n",
"NUM_PROCESSES = min(num_gpus, 2)"
]
},
{
"cell_type": "code",
"execution_count": 4,
Expand Down Expand Up @@ -502,7 +515,7 @@
"LR = float(os.environ.get(\"LEARNING_RATE\", \"0.0005\"))\n",
"BATCH_SIZE_TRAIN = int(os.environ.get(\"BATCH_SIZE_TRAIN\", \"256\"))\n",
"BATCH_SIZE_VALID = int(os.environ.get(\"BATCH_SIZE_VALID\", \"128\"))\n",
"!python -m torch.distributed.run --nproc_per_node 2 {TRAINER_FILE} --path {OUTPUT_DIR} --learning-rate {LR} --per-device-train-batch-size {BATCH_SIZE_TRAIN} --per-device-eval-batch-size {BATCH_SIZE_VALID}"
"!python -m torch.distributed.run --nproc_per_node {NUM_PROCESSES} {TRAINER_FILE} --path {OUTPUT_DIR} --learning-rate {LR} --per-device-train-batch-size {BATCH_SIZE_TRAIN} --per-device-eval-batch-size {BATCH_SIZE_VALID}"
]
},
{
Expand Down Expand Up @@ -554,7 +567,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.8.10"
"version": "3.10.12"
}
},
"nbformat": 4,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,15 @@
# - <b>per device batch size for training</b>: when using multiple GPUs in DistributedDataParallel mode, you may choose to reduce the batch size in order to keep the total batch size constant. This should help reduce training times.
# - <b>per device batch size for evaluation</b>: see above

# In[3]:


# If only 1 GPU are available, starts a single process to use that GPU
from torch.cuda import device_count
num_gpus = device_count()
NUM_PROCESSES = min(num_gpus, 2)


# In[4]:


Expand All @@ -102,7 +111,7 @@
LR = float(os.environ.get("LEARNING_RATE", "0.0005"))
BATCH_SIZE_TRAIN = int(os.environ.get("BATCH_SIZE_TRAIN", "256"))
BATCH_SIZE_VALID = int(os.environ.get("BATCH_SIZE_VALID", "128"))
get_ipython().system('python -m torch.distributed.run --nproc_per_node 2 {TRAINER_FILE} --path {OUTPUT_DIR} --learning-rate {LR} --per-device-train-batch-size {BATCH_SIZE_TRAIN} --per-device-eval-batch-size {BATCH_SIZE_VALID}')
get_ipython().system('python -m torch.distributed.run --nproc_per_node {NUM_PROCESSES} {TRAINER_FILE} --path {OUTPUT_DIR} --learning-rate {LR} --per-device-train-batch-size {BATCH_SIZE_TRAIN} --per-device-eval-batch-size {BATCH_SIZE_VALID}')


# <b>Congratulations!!!</b> You successfully trained your model using 2 GPUs with a `distributed data parallel` approach. If you choose, you may now go back and experiment with some of the hyperparameters (eg. learning rate, batch sizes, number of GPUs) to collect information on various accuracy metrics as well as total training time, to see what fits best into your workflow.
Expand Down
2 changes: 1 addition & 1 deletion main/CONTRIBUTING.html
Original file line number Diff line number Diff line change
Expand Up @@ -213,12 +213,12 @@ <h2>Attribution<a class="headerlink" href="#attribution" title="Permalink to thi
<div class="rst-other-versions">
<dl>
<dt>Tags</dt>
<dd><a href="../v0.1.16/CONTRIBUTING.html">v0.1.16</a></dd>
<dd><a href="../v23.02.00/CONTRIBUTING.html">v23.02.00</a></dd>
<dd><a href="../v23.04.00/CONTRIBUTING.html">v23.04.00</a></dd>
<dd><a href="../v23.05.00/CONTRIBUTING.html">v23.05.00</a></dd>
<dd><a href="../v23.06.00/CONTRIBUTING.html">v23.06.00</a></dd>
<dd><a href="../v23.08.00/CONTRIBUTING.html">v23.08.00</a></dd>
<dd><a href="../v23.12.00/CONTRIBUTING.html">v23.12.00</a></dd>
</dl>
<dl>
<dt>Branches</dt>
Expand Down
2 changes: 1 addition & 1 deletion main/README.html
Original file line number Diff line number Diff line change
Expand Up @@ -299,12 +299,12 @@ <h2>Feedback and Support<a class="headerlink" href="#feedback-and-support" title
<div class="rst-other-versions">
<dl>
<dt>Tags</dt>
<dd><a href="../v0.1.16/index.html">v0.1.16</a></dd>
<dd><a href="../v23.02.00/index.html">v23.02.00</a></dd>
<dd><a href="../v23.04.00/index.html">v23.04.00</a></dd>
<dd><a href="../v23.05.00/index.html">v23.05.00</a></dd>
<dd><a href="../v23.06.00/index.html">v23.06.00</a></dd>
<dd><a href="../v23.08.00/index.html">v23.08.00</a></dd>
<dd><a href="../v23.12.00/index.html">v23.12.00</a></dd>
</dl>
<dl>
<dt>Branches</dt>
Expand Down
2 changes: 1 addition & 1 deletion main/_modules/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -145,12 +145,12 @@ <h1>All modules for which code is available</h1>
<div class="rst-other-versions">
<dl>
<dt>Tags</dt>
<dd><a href="../../v0.1.16/index.html">v0.1.16</a></dd>
<dd><a href="../../v23.02.00/index.html">v23.02.00</a></dd>
<dd><a href="../../v23.04.00/index.html">v23.04.00</a></dd>
<dd><a href="../../v23.05.00/index.html">v23.05.00</a></dd>
<dd><a href="../../v23.06.00/index.html">v23.06.00</a></dd>
<dd><a href="../../v23.08.00/index.html">v23.08.00</a></dd>
<dd><a href="../../v23.12.00/index.html">v23.12.00</a></dd>
</dl>
<dl>
<dt>Branches</dt>
Expand Down
2 changes: 1 addition & 1 deletion main/_modules/merlin_standard_lib/proto/schema_bp.html
Original file line number Diff line number Diff line change
Expand Up @@ -926,12 +926,12 @@ <h1>Source code for merlin_standard_lib.proto.schema_bp</h1><div class="highligh
<div class="rst-other-versions">
<dl>
<dt>Tags</dt>
<dd><a href="../../../../v0.1.16/index.html">v0.1.16</a></dd>
<dd><a href="../../../../v23.02.00/index.html">v23.02.00</a></dd>
<dd><a href="../../../../v23.04.00/index.html">v23.04.00</a></dd>
<dd><a href="../../../../v23.05.00/index.html">v23.05.00</a></dd>
<dd><a href="../../../../v23.06.00/index.html">v23.06.00</a></dd>
<dd><a href="../../../../v23.08.00/index.html">v23.08.00</a></dd>
<dd><a href="../../../../v23.12.00/index.html">v23.12.00</a></dd>
</dl>
<dl>
<dt>Branches</dt>
Expand Down
2 changes: 1 addition & 1 deletion main/_modules/merlin_standard_lib/schema/schema.html
Original file line number Diff line number Diff line change
Expand Up @@ -668,12 +668,12 @@ <h1>Source code for merlin_standard_lib.schema.schema</h1><div class="highlight"
<div class="rst-other-versions">
<dl>
<dt>Tags</dt>
<dd><a href="../../../../v0.1.16/index.html">v0.1.16</a></dd>
<dd><a href="../../../../v23.02.00/index.html">v23.02.00</a></dd>
<dd><a href="../../../../v23.04.00/index.html">v23.04.00</a></dd>
<dd><a href="../../../../v23.05.00/index.html">v23.05.00</a></dd>
<dd><a href="../../../../v23.06.00/index.html">v23.06.00</a></dd>
<dd><a href="../../../../v23.08.00/index.html">v23.08.00</a></dd>
<dd><a href="../../../../v23.12.00/index.html">v23.12.00</a></dd>
</dl>
<dl>
<dt>Branches</dt>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,12 +153,12 @@ <h1>Source code for merlin_standard_lib.utils.embedding_utils</h1><div class="hi
<div class="rst-other-versions">
<dl>
<dt>Tags</dt>
<dd><a href="../../../../v0.1.16/index.html">v0.1.16</a></dd>
<dd><a href="../../../../v23.02.00/index.html">v23.02.00</a></dd>
<dd><a href="../../../../v23.04.00/index.html">v23.04.00</a></dd>
<dd><a href="../../../../v23.05.00/index.html">v23.05.00</a></dd>
<dd><a href="../../../../v23.06.00/index.html">v23.06.00</a></dd>
<dd><a href="../../../../v23.08.00/index.html">v23.08.00</a></dd>
<dd><a href="../../../../v23.12.00/index.html">v23.12.00</a></dd>
</dl>
<dl>
<dt>Branches</dt>
Expand Down
2 changes: 1 addition & 1 deletion main/_modules/transformers4rec/config/schema.html
Original file line number Diff line number Diff line change
Expand Up @@ -190,12 +190,12 @@ <h1>Source code for transformers4rec.config.schema</h1><div class="highlight"><p
<div class="rst-other-versions">
<dl>
<dt>Tags</dt>
<dd><a href="../../../../v0.1.16/index.html">v0.1.16</a></dd>
<dd><a href="../../../../v23.02.00/index.html">v23.02.00</a></dd>
<dd><a href="../../../../v23.04.00/index.html">v23.04.00</a></dd>
<dd><a href="../../../../v23.05.00/index.html">v23.05.00</a></dd>
<dd><a href="../../../../v23.06.00/index.html">v23.06.00</a></dd>
<dd><a href="../../../../v23.08.00/index.html">v23.08.00</a></dd>
<dd><a href="../../../../v23.12.00/index.html">v23.12.00</a></dd>
</dl>
<dl>
<dt>Branches</dt>
Expand Down
2 changes: 1 addition & 1 deletion main/_modules/transformers4rec/config/trainer.html
Original file line number Diff line number Diff line change
Expand Up @@ -261,12 +261,12 @@ <h1>Source code for transformers4rec.config.trainer</h1><div class="highlight"><
<div class="rst-other-versions">
<dl>
<dt>Tags</dt>
<dd><a href="../../../../v0.1.16/index.html">v0.1.16</a></dd>
<dd><a href="../../../../v23.02.00/index.html">v23.02.00</a></dd>
<dd><a href="../../../../v23.04.00/index.html">v23.04.00</a></dd>
<dd><a href="../../../../v23.05.00/index.html">v23.05.00</a></dd>
<dd><a href="../../../../v23.06.00/index.html">v23.06.00</a></dd>
<dd><a href="../../../../v23.08.00/index.html">v23.08.00</a></dd>
<dd><a href="../../../../v23.12.00/index.html">v23.12.00</a></dd>
</dl>
<dl>
<dt>Branches</dt>
Expand Down
2 changes: 1 addition & 1 deletion main/_modules/transformers4rec/config/transformer.html
Original file line number Diff line number Diff line change
Expand Up @@ -759,12 +759,12 @@ <h1>Source code for transformers4rec.config.transformer</h1><div class="highligh
<div class="rst-other-versions">
<dl>
<dt>Tags</dt>
<dd><a href="../../../../v0.1.16/index.html">v0.1.16</a></dd>
<dd><a href="../../../../v23.02.00/index.html">v23.02.00</a></dd>
<dd><a href="../../../../v23.04.00/index.html">v23.04.00</a></dd>
<dd><a href="../../../../v23.05.00/index.html">v23.05.00</a></dd>
<dd><a href="../../../../v23.06.00/index.html">v23.06.00</a></dd>
<dd><a href="../../../../v23.08.00/index.html">v23.08.00</a></dd>
<dd><a href="../../../../v23.12.00/index.html">v23.12.00</a></dd>
</dl>
<dl>
<dt>Branches</dt>
Expand Down
2 changes: 1 addition & 1 deletion main/_modules/transformers4rec/torch/block/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -556,12 +556,12 @@ <h1>Source code for transformers4rec.torch.block.base</h1><div class="highlight"
<div class="rst-other-versions">
<dl>
<dt>Tags</dt>
<dd><a href="../../../../../v0.1.16/index.html">v0.1.16</a></dd>
<dd><a href="../../../../../v23.02.00/index.html">v23.02.00</a></dd>
<dd><a href="../../../../../v23.04.00/index.html">v23.04.00</a></dd>
<dd><a href="../../../../../v23.05.00/index.html">v23.05.00</a></dd>
<dd><a href="../../../../../v23.06.00/index.html">v23.06.00</a></dd>
<dd><a href="../../../../../v23.08.00/index.html">v23.08.00</a></dd>
<dd><a href="../../../../../v23.12.00/index.html">v23.12.00</a></dd>
</dl>
<dl>
<dt>Branches</dt>
Expand Down
2 changes: 1 addition & 1 deletion main/_modules/transformers4rec/torch/block/mlp.html
Original file line number Diff line number Diff line change
Expand Up @@ -268,12 +268,12 @@ <h1>Source code for transformers4rec.torch.block.mlp</h1><div class="highlight">
<div class="rst-other-versions">
<dl>
<dt>Tags</dt>
<dd><a href="../../../../../v0.1.16/index.html">v0.1.16</a></dd>
<dd><a href="../../../../../v23.02.00/index.html">v23.02.00</a></dd>
<dd><a href="../../../../../v23.04.00/index.html">v23.04.00</a></dd>
<dd><a href="../../../../../v23.05.00/index.html">v23.05.00</a></dd>
<dd><a href="../../../../../v23.06.00/index.html">v23.06.00</a></dd>
<dd><a href="../../../../../v23.08.00/index.html">v23.08.00</a></dd>
<dd><a href="../../../../../v23.12.00/index.html">v23.12.00</a></dd>
</dl>
<dl>
<dt>Branches</dt>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -326,12 +326,12 @@ <h1>Source code for transformers4rec.torch.block.transformer</h1><div class="hig
<div class="rst-other-versions">
<dl>
<dt>Tags</dt>
<dd><a href="../../../../../v0.1.16/index.html">v0.1.16</a></dd>
<dd><a href="../../../../../v23.02.00/index.html">v23.02.00</a></dd>
<dd><a href="../../../../../v23.04.00/index.html">v23.04.00</a></dd>
<dd><a href="../../../../../v23.05.00/index.html">v23.05.00</a></dd>
<dd><a href="../../../../../v23.06.00/index.html">v23.06.00</a></dd>
<dd><a href="../../../../../v23.08.00/index.html">v23.08.00</a></dd>
<dd><a href="../../../../../v23.12.00/index.html">v23.12.00</a></dd>
</dl>
<dl>
<dt>Branches</dt>
Expand Down
2 changes: 1 addition & 1 deletion main/_modules/transformers4rec/torch/features/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -141,12 +141,12 @@ <h1>Source code for transformers4rec.torch.features.base</h1><div class="highlig
<div class="rst-other-versions">
<dl>
<dt>Tags</dt>
<dd><a href="../../../../../v0.1.16/index.html">v0.1.16</a></dd>
<dd><a href="../../../../../v23.02.00/index.html">v23.02.00</a></dd>
<dd><a href="../../../../../v23.04.00/index.html">v23.04.00</a></dd>
<dd><a href="../../../../../v23.05.00/index.html">v23.05.00</a></dd>
<dd><a href="../../../../../v23.06.00/index.html">v23.06.00</a></dd>
<dd><a href="../../../../../v23.08.00/index.html">v23.08.00</a></dd>
<dd><a href="../../../../../v23.12.00/index.html">v23.12.00</a></dd>
</dl>
<dl>
<dt>Branches</dt>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -186,12 +186,12 @@ <h1>Source code for transformers4rec.torch.features.continuous</h1><div class="h
<div class="rst-other-versions">
<dl>
<dt>Tags</dt>
<dd><a href="../../../../../v0.1.16/index.html">v0.1.16</a></dd>
<dd><a href="../../../../../v23.02.00/index.html">v23.02.00</a></dd>
<dd><a href="../../../../../v23.04.00/index.html">v23.04.00</a></dd>
<dd><a href="../../../../../v23.05.00/index.html">v23.05.00</a></dd>
<dd><a href="../../../../../v23.06.00/index.html">v23.06.00</a></dd>
<dd><a href="../../../../../v23.08.00/index.html">v23.08.00</a></dd>
<dd><a href="../../../../../v23.12.00/index.html">v23.12.00</a></dd>
</dl>
<dl>
<dt>Branches</dt>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -855,12 +855,12 @@ <h1>Source code for transformers4rec.torch.features.embedding</h1><div class="hi
<div class="rst-other-versions">
<dl>
<dt>Tags</dt>
<dd><a href="../../../../../v0.1.16/index.html">v0.1.16</a></dd>
<dd><a href="../../../../../v23.02.00/index.html">v23.02.00</a></dd>
<dd><a href="../../../../../v23.04.00/index.html">v23.04.00</a></dd>
<dd><a href="../../../../../v23.05.00/index.html">v23.05.00</a></dd>
<dd><a href="../../../../../v23.06.00/index.html">v23.06.00</a></dd>
<dd><a href="../../../../../v23.08.00/index.html">v23.08.00</a></dd>
<dd><a href="../../../../../v23.12.00/index.html">v23.12.00</a></dd>
</dl>
<dl>
<dt>Branches</dt>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -417,12 +417,12 @@ <h1>Source code for transformers4rec.torch.features.sequence</h1><div class="hig
<div class="rst-other-versions">
<dl>
<dt>Tags</dt>
<dd><a href="../../../../../v0.1.16/index.html">v0.1.16</a></dd>
<dd><a href="../../../../../v23.02.00/index.html">v23.02.00</a></dd>
<dd><a href="../../../../../v23.04.00/index.html">v23.04.00</a></dd>
<dd><a href="../../../../../v23.05.00/index.html">v23.05.00</a></dd>
<dd><a href="../../../../../v23.06.00/index.html">v23.06.00</a></dd>
<dd><a href="../../../../../v23.08.00/index.html">v23.08.00</a></dd>
<dd><a href="../../../../../v23.12.00/index.html">v23.12.00</a></dd>
</dl>
<dl>
<dt>Branches</dt>
Expand Down
2 changes: 1 addition & 1 deletion main/_modules/transformers4rec/torch/features/tabular.html
Original file line number Diff line number Diff line change
Expand Up @@ -357,12 +357,12 @@ <h1>Source code for transformers4rec.torch.features.tabular</h1><div class="high
<div class="rst-other-versions">
<dl>
<dt>Tags</dt>
<dd><a href="../../../../../v0.1.16/index.html">v0.1.16</a></dd>
<dd><a href="../../../../../v23.02.00/index.html">v23.02.00</a></dd>
<dd><a href="../../../../../v23.04.00/index.html">v23.04.00</a></dd>
<dd><a href="../../../../../v23.05.00/index.html">v23.05.00</a></dd>
<dd><a href="../../../../../v23.06.00/index.html">v23.06.00</a></dd>
<dd><a href="../../../../../v23.08.00/index.html">v23.08.00</a></dd>
<dd><a href="../../../../../v23.12.00/index.html">v23.12.00</a></dd>
</dl>
<dl>
<dt>Branches</dt>
Expand Down
2 changes: 1 addition & 1 deletion main/_modules/transformers4rec/torch/losses.html
Original file line number Diff line number Diff line change
Expand Up @@ -138,12 +138,12 @@ <h1>Source code for transformers4rec.torch.losses</h1><div class="highlight"><pr
<div class="rst-other-versions">
<dl>
<dt>Tags</dt>
<dd><a href="../../../../v0.1.16/index.html">v0.1.16</a></dd>
<dd><a href="../../../../v23.02.00/index.html">v23.02.00</a></dd>
<dd><a href="../../../../v23.04.00/index.html">v23.04.00</a></dd>
<dd><a href="../../../../v23.05.00/index.html">v23.05.00</a></dd>
<dd><a href="../../../../v23.06.00/index.html">v23.06.00</a></dd>
<dd><a href="../../../../v23.08.00/index.html">v23.08.00</a></dd>
<dd><a href="../../../../v23.12.00/index.html">v23.12.00</a></dd>
</dl>
<dl>
<dt>Branches</dt>
Expand Down
2 changes: 1 addition & 1 deletion main/_modules/transformers4rec/torch/masking.html
Original file line number Diff line number Diff line change
Expand Up @@ -988,12 +988,12 @@ <h1>Source code for transformers4rec.torch.masking</h1><div class="highlight"><p
<div class="rst-other-versions">
<dl>
<dt>Tags</dt>
<dd><a href="../../../../v0.1.16/index.html">v0.1.16</a></dd>
<dd><a href="../../../../v23.02.00/index.html">v23.02.00</a></dd>
<dd><a href="../../../../v23.04.00/index.html">v23.04.00</a></dd>
<dd><a href="../../../../v23.05.00/index.html">v23.05.00</a></dd>
<dd><a href="../../../../v23.06.00/index.html">v23.06.00</a></dd>
<dd><a href="../../../../v23.08.00/index.html">v23.08.00</a></dd>
<dd><a href="../../../../v23.12.00/index.html">v23.12.00</a></dd>
</dl>
<dl>
<dt>Branches</dt>
Expand Down
2 changes: 1 addition & 1 deletion main/_modules/transformers4rec/torch/model/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -1003,12 +1003,12 @@ <h1>Source code for transformers4rec.torch.model.base</h1><div class="highlight"
<div class="rst-other-versions">
<dl>
<dt>Tags</dt>
<dd><a href="../../../../../v0.1.16/index.html">v0.1.16</a></dd>
<dd><a href="../../../../../v23.02.00/index.html">v23.02.00</a></dd>
<dd><a href="../../../../../v23.04.00/index.html">v23.04.00</a></dd>
<dd><a href="../../../../../v23.05.00/index.html">v23.05.00</a></dd>
<dd><a href="../../../../../v23.06.00/index.html">v23.06.00</a></dd>
<dd><a href="../../../../../v23.08.00/index.html">v23.08.00</a></dd>
<dd><a href="../../../../../v23.12.00/index.html">v23.12.00</a></dd>
</dl>
<dl>
<dt>Branches</dt>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -979,12 +979,12 @@ <h1>Source code for transformers4rec.torch.model.prediction_task</h1><div class=
<div class="rst-other-versions">
<dl>
<dt>Tags</dt>
<dd><a href="../../../../../v0.1.16/index.html">v0.1.16</a></dd>
<dd><a href="../../../../../v23.02.00/index.html">v23.02.00</a></dd>
<dd><a href="../../../../../v23.04.00/index.html">v23.04.00</a></dd>
<dd><a href="../../../../../v23.05.00/index.html">v23.05.00</a></dd>
<dd><a href="../../../../../v23.06.00/index.html">v23.06.00</a></dd>
<dd><a href="../../../../../v23.08.00/index.html">v23.08.00</a></dd>
<dd><a href="../../../../../v23.12.00/index.html">v23.12.00</a></dd>
</dl>
<dl>
<dt>Branches</dt>
Expand Down
2 changes: 1 addition & 1 deletion main/_modules/transformers4rec/torch/ranking_metric.html
Original file line number Diff line number Diff line change
Expand Up @@ -437,12 +437,12 @@ <h1>Source code for transformers4rec.torch.ranking_metric</h1><div class="highli
<div class="rst-other-versions">
<dl>
<dt>Tags</dt>
<dd><a href="../../../../v0.1.16/index.html">v0.1.16</a></dd>
<dd><a href="../../../../v23.02.00/index.html">v23.02.00</a></dd>
<dd><a href="../../../../v23.04.00/index.html">v23.04.00</a></dd>
<dd><a href="../../../../v23.05.00/index.html">v23.05.00</a></dd>
<dd><a href="../../../../v23.06.00/index.html">v23.06.00</a></dd>
<dd><a href="../../../../v23.08.00/index.html">v23.08.00</a></dd>
<dd><a href="../../../../v23.12.00/index.html">v23.12.00</a></dd>
</dl>
<dl>
<dt>Branches</dt>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -311,12 +311,12 @@ <h1>Source code for transformers4rec.torch.tabular.aggregation</h1><div class="h
<div class="rst-other-versions">
<dl>
<dt>Tags</dt>
<dd><a href="../../../../../v0.1.16/index.html">v0.1.16</a></dd>
<dd><a href="../../../../../v23.02.00/index.html">v23.02.00</a></dd>
<dd><a href="../../../../../v23.04.00/index.html">v23.04.00</a></dd>
<dd><a href="../../../../../v23.05.00/index.html">v23.05.00</a></dd>
<dd><a href="../../../../../v23.06.00/index.html">v23.06.00</a></dd>
<dd><a href="../../../../../v23.08.00/index.html">v23.08.00</a></dd>
<dd><a href="../../../../../v23.12.00/index.html">v23.12.00</a></dd>
</dl>
<dl>
<dt>Branches</dt>
Expand Down
2 changes: 1 addition & 1 deletion main/_modules/transformers4rec/torch/tabular/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -768,12 +768,12 @@ <h1>Source code for transformers4rec.torch.tabular.base</h1><div class="highligh
<div class="rst-other-versions">
<dl>
<dt>Tags</dt>
<dd><a href="../../../../../v0.1.16/index.html">v0.1.16</a></dd>
<dd><a href="../../../../../v23.02.00/index.html">v23.02.00</a></dd>
<dd><a href="../../../../../v23.04.00/index.html">v23.04.00</a></dd>
<dd><a href="../../../../../v23.05.00/index.html">v23.05.00</a></dd>
<dd><a href="../../../../../v23.06.00/index.html">v23.06.00</a></dd>
<dd><a href="../../../../../v23.08.00/index.html">v23.08.00</a></dd>
<dd><a href="../../../../../v23.12.00/index.html">v23.12.00</a></dd>
</dl>
<dl>
<dt>Branches</dt>
Expand Down
Loading

0 comments on commit 1178fc4

Please sign in to comment.