Skip to content
This repository was archived by the owner on Jan 12, 2026. It is now read-only.
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