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

Fix some colab typos in colab06-07.ipynb #163

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
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
8 changes: 3 additions & 5 deletions exercises/colab06-07.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@
"source": [
"# Install Dependencies\n",
"\n",
"If you are running on Google Colab, you need to install the necessary dependencies before beginning the exercise.\n",
"\n",
"**NOTE**: After installing the dependencies, you need to click on \"RESTART RUNTIME\""
"If you are running on Google Colab, you need to install the necessary dependencies before beginning the exercise."
]
},
{
Expand Down Expand Up @@ -242,7 +240,7 @@
"\n",
"We are able to use `ray.wait` because the two lists returned by **`ray.wait` maintains the ordering of the input list**. That is, if `f` is a remote function, the code \n",
"```python\n",
" results = ray.wait([f.remote(i) for i in range(100)], num_results=10)\n",
" results = ray.wait([f.remote(i) for i in range(100)], num_returns=10)\n",
"```\n",
"will return `(ready_list, remain_list)` and the `ObjectID`s of in those lists will be ordered by the argument passed to `f` above."
]
Expand Down Expand Up @@ -466,7 +464,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.7"
"version": "3.6.8"
},
"toc": {
"base_numbering": 1,
Expand Down