Python based framework for Automatic AI for Regression and Classification over numerical data. Performs model search, hyper-parameter tuning, and high-quality Jupyter Notebook code generation.
modelScore={m:cvScore(models[m][0](),X,Y,k) for m in best }
The following line of code sequentially trains different machine learning models from the dictionary object (variable: best ). Instead of this sequential execution of for loop, execute the above step in parallel considering all the CPU cores in the system.
File to refer: https://github.com/blobcity/autoai/blob/main/blobcity/modelSelection.py
The following line of code sequentially trains different machine learning models from the dictionary object (variable: best ). Instead of this sequential execution of for loop, execute the above step in
parallel
considering all the CPU cores in the system.