Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Azure ML XGBoost instructions to Ubuntu 24.04 #465

Open
wants to merge 33 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 26 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
1df54c4
deleted $ for multiline commands
melodywang060 Oct 8, 2024
9b7088a
Update source/cloud/azure/aks.md
melodywang060 Oct 9, 2024
f1a8682
Update source/cloud/azure/aks.md
melodywang060 Oct 9, 2024
bcf36bc
Update source/cloud/azure/aks.md
melodywang060 Oct 9, 2024
f54e67b
fixed multiline command issue
melodywang060 Oct 9, 2024
c57b8c3
added more detailed instructions
melodywang060 Oct 10, 2024
1205ab9
added clearer user input sections
melodywang060 Oct 10, 2024
33b27db
more descripted title
melodywang060 Oct 10, 2024
2034658
fixed linting errors
melodywang060 Oct 10, 2024
540a35a
fixed small linting error
melodywang060 Oct 10, 2024
ef7a978
updated ubuntu versions
melodywang060 Oct 10, 2024
8a204a9
got rid of outdated package
melodywang060 Oct 10, 2024
8c3a176
added intermediary step for clarity
melodywang060 Oct 10, 2024
59d6343
changed hardcoded lines to FILL-THIS-IN
melodywang060 Oct 10, 2024
fa6613a
Update source/guides/azure/infiniband.md
melodywang060 Oct 10, 2024
3e7aace
Update source/guides/azure/infiniband.md
melodywang060 Oct 10, 2024
c62f7ab
Update source/guides/azure/infiniband.md
melodywang060 Oct 10, 2024
b9c1317
Update source/cloud/azure/aks.md
melodywang060 Oct 10, 2024
1880bc9
fixed backtick error
melodywang060 Oct 11, 2024
7c07bbe
ran black and pretty to format files:
melodywang060 Oct 11, 2024
9802cbf
ran ruff
melodywang060 Oct 11, 2024
6993b09
Merge branch 'main' into xgboost-azure
melodywang060 Oct 11, 2024
b4bce66
fix linting issues
melodywang060 Oct 11, 2024
48c4096
Merge branch 'main' into xgboost-azure
jacobtomlinson Oct 14, 2024
622f326
removed package.json and package-lock.json and added to .gitignore
melodywang060 Oct 14, 2024
e78dfa9
Merge branch 'xgboost-azure' of github.com:rapidsai/deployment into x…
melodywang060 Oct 14, 2024
9265020
Update source/guides/azure/infiniband.md
melodywang060 Oct 15, 2024
2ffcf9a
Update source/guides/azure/infiniband.md
melodywang060 Oct 15, 2024
b1f42dd
fixed merge conflict
melodywang060 Oct 16, 2024
81c0310
fixed merge conflicts
melodywang060 Oct 16, 2024
173935e
Merge branch 'xgboost-azure' of github.com:rapidsai/deployment into x…
melodywang060 Oct 16, 2024
178925f
fixed linting issues
melodywang060 Oct 16, 2024
df3fe1c
Update source/guides/azure/infiniband.md
jacobtomlinson Oct 31, 2024
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 .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,6 @@ jupyter_execute/

# exclusions
!source/examples/rapids-1brc-single-node/lookup.csv

package.json
package-lock.json
2 changes: 1 addition & 1 deletion source/examples/rapids-sagemaker-hpo/HPODatasets.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Airline Dataset target label and feature column names """
"""Airline Dataset target label and feature column names"""

airline_label_column = "ArrDel15"
airline_feature_columns = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,10 +178,10 @@
"metadata": {},
"outputs": [],
"source": [
"location = \"West US 2\"\n",
"resource_group = \"rapidsai-deployment\"\n",
"vnet = \"rapidsai-deployment-vnet\"\n",
"security_group = \"rapidsaiclouddeploymenttest-nsg\"\n",
"location = \"FILL-THIS-IN\"\n",
"resource_group = \"FILL-THIS-IN\"\n",
"vnet = \"FILL-THIS-IN\"\n",
"security_group = \"FILL-THIS-IN\"\n",
"vm_size = \"Standard_NC12s_v3\" # or choose a different GPU enabled VM type\n",
"\n",
"docker_image = \"{{rapids_container}}\"\n",
Expand Down
Loading