Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path.
exclude_patterns = []
exclude_patterns = ["examples/legacy"]

# -- Options for HTML output -------------------------------------------------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
"outputs": [],
"source": [
"BATCH_SIZE = 1024 * 32 # Batch Size\n",
"CATEGORICAL_COLUMNS = [\"movieId\", \"userId\"] # Single-hot\n",
"CATEGORICAL_COLUMNS = [\"userId\", \"movieId\"] # Single-hot\n",
"CATEGORICAL_MH_COLUMNS = [\"genres\"] # Multi-hot\n",
"NUMERIC_COLUMNS = []\n",
"\n",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
"outputs": [],
"source": [
"BATCH_SIZE = 1024 * 32 # Batch Size\n",
"CATEGORICAL_COLUMNS = [\"movieId\", \"userId\"] # Single-hot\n",
"CATEGORICAL_COLUMNS = [\"userId\", \"movieId\"] # Single-hot\n",
"CATEGORICAL_MH_COLUMNS = [\"genres\"] # Multi-hot\n",
"NUMERIC_COLUMNS = []\n",
"\n",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
"outputs": [],
"source": [
"BATCH_SIZE = 1024 * 32 # Batch Size\n",
"CATEGORICAL_COLUMNS = [\"movieId\", \"userId\"] # Single-hot\n",
"CATEGORICAL_COLUMNS = [\"userId\", \"movieId\"] # Single-hot\n",
"CATEGORICAL_MH_COLUMNS = [\"genres\"] # Multi-hot\n",
"NUMERIC_COLUMNS = []\n",
"\n",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
"outputs": [],
"source": [
"BATCH_SIZE = 1024 * 32 # Batch Size\n",
"CATEGORICAL_COLUMNS = [\"movieId\", \"userId\"] # Single-hot\n",
"CATEGORICAL_COLUMNS = [\"userId\", \"movieId\"] # Single-hot\n",
"CATEGORICAL_MH_COLUMNS = [\"genres\"] # Multi-hot\n",
"NUMERIC_COLUMNS = []\n",
"\n",
Expand Down