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

[WIP] reboot notebooks contrib #312

Open
wants to merge 29 commits into
base: branch-0.14
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
c91ec27
reboot
taureandyernv Sep 11, 2020
dedcc95
Update README.md
taureandyernv Oct 8, 2020
6f37fa5
Update README.md
taureandyernv Oct 8, 2020
99812e3
TMLS logo
BradReesWork Nov 4, 2020
27915c5
get data
BradReesWork Nov 4, 2020
4647ea9
taxi notebook
BradReesWork Nov 4, 2020
a89f82f
Merge pull request #316 from BradReesWork/branch-0.14
taureandyernv Nov 4, 2020
14688e6
updates
BradReesWork Nov 13, 2020
b15d6dd
Merge pull request #317 from BradReesWork/branch-0.14
taureandyernv Nov 13, 2020
6cadeb5
Major notebook reshuffle and new readme
taureandyernv Dec 4, 2020
2703825
update competition notebooks structure
taureandyernv Dec 4, 2020
41d6509
updated folder structure intro course, and readme
taureandyernv Dec 18, 2020
0a3396e
update links
taureandyernv Dec 18, 2020
5bf2b75
added cuml and cusptial archived demos
taureandyernv Feb 1, 2021
79c1e6d
updated to 0.18
taureandyernv Mar 18, 2021
f916c01
updated a line to include cupy as an input
taureandyernv Mar 18, 2021
64b5b80
Updated the 01_Introduction_to_RAPIDS notebooks for use with an AWS i…
Nicholas-7 Mar 24, 2021
91faefa
Updated Community Relaunch to resolve outdated functionality and synt…
Nicholas-7 Mar 25, 2021
778b38b
updated Intro to RAPIDS title in link
taureandyernv Mar 25, 2021
34e0c30
Iniial draft of 11_Introduction_to_Strings.ipynb
Nicholas-7 Mar 26, 2021
5ce42ae
Updated Draft 11_Introduction_to_Strings.ipynb
Nicholas-7 Mar 27, 2021
e5ff93e
updated with gpu size conditionals
taureandyernv Apr 6, 2021
52d194d
Reverted modified notebooks back to original filepaths
Nicholas-7 Apr 8, 2021
569d83f
Merging updated tutorials with updated file paths
Nicholas-7 Apr 8, 2021
16bff5b
Updating check to instruct user to install blazing form release selector
taureandyernv Apr 8, 2021
251cd09
Updating Notebooks to reflect updated filepaths and installation lang…
Nicholas-7 Apr 9, 2021
939fdf5
Introduction to Strings 1.0
Nicholas-7 Apr 13, 2021
9f331fd
Update to layout and formatting for optimal output cell structure
Nicholas-7 Apr 20, 2021
4ee3f2d
Merge pull request #320 from Nicholas-7/updates_nvidia_notebooks
taureandyernv Apr 22, 2021
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
265 changes: 136 additions & 129 deletions README.md

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

1,496 changes: 1,496 additions & 0 deletions community_tutorials_and_guides/census_education2income_demo.ipynb

Large diffs are not rendered by default.

File renamed without changes.
770 changes: 770 additions & 0 deletions community_tutorials_and_guides/linear_regression_demo.ipynb

Large diffs are not rendered by default.

File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
Expand All @@ -61,7 +61,7 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 2,
"metadata": {},
"outputs": [],
"source": [
Expand All @@ -84,14 +84,23 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 3,
"metadata": {},
"outputs": [],
"source": [
"data_dir = '../../data/rf/'\n",
"data_dir = '../data/rf/'\n",
"if not os.path.exists(data_dir):\n",
" print('creating rf data directory')\n",
" os.system('mkdir ../../data/rf')"
" os.system('mkdir ../data/rf')"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [],
"source": [
"!ls ../data/rf"
]
},
{
Expand All @@ -107,7 +116,7 @@
"col_names = ['label'] + [\"col-{}\".format(i) for i in range(2, 30)] # Assign column names\n",
"dtypes_ls = ['int32'] + ['float32' for _ in range(2, 30)] # Assign dtypes to each column\n",
"data = cudf.read_csv(decompressed_filepath, names=col_names, dtype=dtypes_ls)\n",
"data.head().to_pandas()"
"data.head()"
]
},
{
Expand Down Expand Up @@ -243,8 +252,15 @@
"# Predict\n",
"\n",
"print(\"cuml RF Accuracy Score: \", accuracy_score(cu_rf.predict(X_test), y_test))\n",
"print(\"sklearn RF Accuracy Score: \", accuracy_score(skl_rf.predict(X_test), y_test))"
"# print(\"sklearn RF Accuracy Score: \", accuracy_score(skl_rf.predict(X_test), y_test))"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
Expand All @@ -263,7 +279,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.3"
"version": "3.7.10"
}
},
"nbformat": 4,
Expand Down
Loading