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.
calculate appropriate metric on the basis problem type for selected model along with the tuning parameters on train and test split with 80:20 ratio. And store the resulting data in dictionary data structure in Model Class. when stats function is called report/print all the stored stats from the dictionary.
Add statistical metric for train model
Metric to utilize in following problem statements:
Regression:
Classification:
Enhancement:
Add a function to
Model
Class namedstats
, which returns above mentioned metric associated to problem type.file to ref:
calculate appropriate metric on the basis
problem type
for selected model along with the tuning parameters ontrain and test split
with80:20
ratio. And store the resulting data in dictionary data structure in Model Class. whenstats
function is called report/print all the stored stats from the dictionary.