The answer is crystal straight! After a long part of developing of your model (layers, input data, sahpe ...), you will get a trained model as output. You will probably ask yourself: what can I do to improve the performance of my model? At this point, you have several answers:
- Improve the quality of the data: clean the data, create new features, reduce the dimensions, remove some outliers, remove some features, cluster the data, etc.
- Improve the performance of the algorithm: this is what we called "tuning".
Adjusting hyperparameters can make the difference between an average model and a highly accurate model. For instance, simple things like choosing a different learning rate or changing the size of a network layer can have a dramatic impact on the performance of your model.
Luckily, there are tools that help find the best combination of parameters. Ray Tune is an innovative industry standard tool for tuning distributed hyperparameters. Ray Tune includes the latest hyperparameter search algorithms, integrates with TensorBoard and other analysis libraries, and natively supports distributed training with Ray's distributed machine learning engine.
- Hyperparameter Optimization Checklist:
- Manual Search.
- Grid Search.
- Randomized Search.
- Halving Grid Search.
- Halving Randomized Search.
- HyperOpt-Sklearn.
- Bayes Search.
Claim: This repository will be maintained, so that it can eventually be used for Neuralprophet too (Stanford, Meta tools).
Ray is a unified framework for scaling AI and Python applications. Ray consists of a core distributed runtime and a toolkit of libraries (Ray AIR) for simplifying ML compute:
Learn more about Ray AIR and its libraries.
Ray runs on any machine, cluster, cloud provider, and Kubernetes, and features a growing ecosystem of community integrations.
- To run tests you can download the
blood-cells
data from Kaggle
Today's ML workloads are increasingly compute-intensive. As convenient as they are, single-node development environments such as your laptop cannot scale to meet these demands. Ray is a unified way to scale Python and AI applications from a laptop to a cluster. With Ray, you can seamlessly scale the same code from a laptop to a cluster. Ray is designed to be general-purpose, meaning that it can performantly run any kind of workload. If your application is written in Python, you can scale it with Ray, no other infrastructure required.