Skip to content

Commit

Permalink
few edits
Browse files Browse the repository at this point in the history
  • Loading branch information
skirui-source committed Jul 17, 2023
1 parent 5ff3630 commit 26e1437
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/examples/xgboost-rf-gpu-cpu-benchmark/notebook.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"\n",
"For instance, we find a x speedup in wall clock time (6 hours vs 3+ days) and a x reduction in cost when comparing between GPU and CPU EC2 instances on 100 XGBoost HPO trials using 10 parallel workers on 10 years of the Airline Dataset.\n",
"\n",
"For more check out our AWS blog(link)."
"For more check out our blog(link)."
]
},
{
Expand Down Expand Up @@ -102,9 +102,9 @@
"id": "533be0b1-0d5e-46b3-9ff1-dd71751fe68f",
"metadata": {},
"source": [
"To maximize on efficiency, we launch a `LocalCUDACluster` that utilizes GPUs for distributed computing. Then connect a Dask Client to submit and manage computations on the cluster. Refer to this (link) for more information on how to achieve this.\n",
"To maximize on efficiency, we launch either a `LocalCluster` for cpu or `LocalCUDACluster` that utilizes GPUs for distributed computing. Then connect a Dask Client to submit and manage computations on the cluster. \n",
"\n",
"Submit dataset to the Dask client, instructing Dask to store the dataset in memory at all times. This can improve performance by avoiding unnecessary data transfers during the hpo process. \n"
"Submit and \"persist\" the dataset to the Dask client, which instructs Dask to store the dataset in memory at all times for faster performance by avoiding unnecessary data transfers during the hpo process. \n"
]
},
{
Expand Down

0 comments on commit 26e1437

Please sign in to comment.