Skip to content
Closed
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
3 changes: 3 additions & 0 deletions .github/workflows/postmerge-gpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
branches: [main]
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
pull_request:
branches: [main]
types: [opened, synchronize, reopened]

jobs:
gpu-ci-postmerge:
Expand Down
22 changes: 20 additions & 2 deletions examples/Serving-Ranking-Models-With-Merlin-Systems.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "f550a0e5",
"metadata": {},
Expand Down Expand Up @@ -70,6 +71,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "1346eec7-48d9-41b3-a3f7-c88230a6f24c",
"metadata": {},
Expand All @@ -90,6 +92,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "222fde5f",
"metadata": {},
Expand Down Expand Up @@ -118,6 +121,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "746fba56-36af-44a3-8beb-34ca026648be",
"metadata": {},
Expand Down Expand Up @@ -150,6 +154,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "143795f2",
"metadata": {},
Expand All @@ -160,6 +165,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "bd5b046f",
"metadata": {},
Expand Down Expand Up @@ -210,6 +216,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "53908458",
"metadata": {
Expand Down Expand Up @@ -248,6 +255,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "8b916afa",
"metadata": {},
Expand Down Expand Up @@ -638,6 +646,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "4edcbd33-f845-4921-b295-46ad366da722",
"metadata": {},
Expand Down Expand Up @@ -667,6 +676,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "96aa55fb",
"metadata": {},
Expand Down Expand Up @@ -735,6 +745,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "0b99146c",
"metadata": {},
Expand All @@ -761,6 +772,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "c75e2eb9",
"metadata": {},
Expand Down Expand Up @@ -800,6 +812,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "358bb59b-796a-4e1e-8e02-b7d3b86c27f9",
"metadata": {},
Expand Down Expand Up @@ -845,6 +858,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "dfbc6f01-5ccf-43a2-ae4f-8451a420fc70",
"metadata": {},
Expand Down Expand Up @@ -1026,12 +1040,13 @@
"\n",
"# read in data for request\n",
"batch = df_lib.read_parquet(\n",
" os.path.join(original_data_path,\"valid\", \"part.0.parquet\"), num_rows=3, columns=workflow.input_schema.column_names\n",
")\n",
" os.path.join(original_data_path,\"valid\", \"part.0.parquet\"), columns=workflow.input_schema.column_names\n",
").head(3)\n",
"batch"
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "9691d28f-80d8-4520-b6e6-b7e260c50380",
"metadata": {},
Expand Down Expand Up @@ -1061,6 +1076,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "50fb442d-d918-4b1a-a825-dfce4f75bc02",
"metadata": {},
Expand All @@ -1081,6 +1097,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "10c00a98-a30e-45ca-9ab6-667621a20c75",
"metadata": {},
Expand Down Expand Up @@ -1111,6 +1128,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "f37053aa-9a01-40ce-ac81-e6edf266f2af",
"metadata": {},
Expand Down
4 changes: 2 additions & 2 deletions requirements/base.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
merlin-core>=0.2.0
nvtabular>=1.0.0
merlin-core>=22.04
nvtabular>=22.04
requests>=2.10,<3
# regardless of whether in GPU/CPU environment must support sklearn which is CPU only.
treelite==2.4.0
Expand Down
3 changes: 0 additions & 3 deletions requirements/gpu.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
feast<0.20
faiss-gpu
pytest
pytest-cov
dask>=2022.3.0
distributed>=2022.3.0
1 change: 1 addition & 0 deletions requirements/test-gpu.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
-r test.txt
-r gpu.txt

tensorflow
faiss-gpu==1.7.2
Loading