Closed JiahaoYao closed 4 years ago
https://colab.research.google.com/github/ray-project/tutorial/blob/master/exercises/colab06-07.ipynb In the last Exercise 7, at the markdown results = ray.wait([f.remote(i) for i in range(100)], num_results=10) should be changed to num_returns (instead of num_results)
results = ray.wait([f.remote(i) for i in range(100)], num_results=10)
num_returns
num_results
Can you make a pr?
https://colab.research.google.com/github/ray-project/tutorial/blob/master/exercises/colab06-07.ipynb In the last Exercise 7, at the markdown
results = ray.wait([f.remote(i) for i in range(100)], num_results=10)
should be changed tonum_returns
(instead of)num_results