Python trick : generate parameter grid for ML model fine tuning
For a Machine Learning project, it's crucial step to fine tune the model parameters in order to otbain better performance.
Depending on the type of model and implementation library, parameters can affect differently the models' behaviour. It is often necessary to manually test each parameter with different values, which can lead to the identification of the best parameter configuration. The set of parameters that achieves a higher accuracy and a better generalization.
A few examples of python solutions aimed to help in this task, by simplifying and automating the generation of a parameter grid, taking into account all the combinations that should be tested.


