[FEATURE] Ray HPO Tune Integration
See original GitHub issueWe’ve managed to run an axample ray cluster and HPO on kubenetes. Here are the steps:
- Connect local kubectl to the eks cluster
- Pip install ray locally:
pip install ray
- Clone ray repo:
git clone https://github.com/ray-project/ray.git
- Launch up a ray cluster by:
ray up ray/python/ray/autoscaler/kubernetes/example-full.yaml
- Check the cluster got launched by:
kubectl -n ray get pods
- To create a sample job:
kubectl create -f ray/doc/kubernetes/job-example.yaml
- You can modify the script got downloaded in the yaml file to run different script
- To check result:
kubectl -n ray logs <launched job pod>
- To tear down the cluster:
ray down ray/python/ray/autoscaler/kubernetes/example-full.yaml
Issue Analytics
- State:
- Created 2 years ago
- Reactions:1
- Comments:7 (3 by maintainers)
Top Results From Across the Web
Scalable Hyperparameter Tuning — Ray 2.2.0
Tune is a Python library for experiment execution and hyperparameter tuning at any scale. You can tune your favorite machine learning framework (PyTorch, ......
Read more >Hyperparameter tuning with Keras and Ray Tune
Ray Tune integrates seamlessly with experiment management tools such as MLFlow, TensorBoard, weights and biases, etc. and provides a ...
Read more >Hyperparameter tuning with Ray Tune
Ray Tune includes the latest hyperparameter search algorithms, integrates with TensorBoard and other analysis libraries, and natively supports distributed ...
Read more >Ray Tune: Distributed Hyperparameter Optimization Made ...
This talk was presented at PyBay2021 Food Truck Edition - 6th annual Bay Area Regional Python conference. See pybay.com for more details ...
Read more >Cutting Edge Hyperparameter Tuning Made Simple With Ray ...
Then, we will showcase Ray Tune and its sklearn-wrapper ... optimization and how simple tune -sklearn is to use and integrate within existing ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
nice, we can turn this into a plugin, make sure https://github.com/ray-project/ray/blob/master/python/ray/autoscaler/kubernetes/example-full.yaml is changed to use the <team namespace> and not introduce a new namespace “ray” . This will allow ray to launch containers within the team namespace.
Ray plugin has been added and will be available in the next release