statgarten / stove

Machine learning modeling, visualization
http://www.statgarten.com/stove/
Other
17 stars 5 forks source link

Hyperparameters #17

Closed katyalex closed 1 year ago

katyalex commented 1 year ago

I used this package to create an ML model and got pretty good accuracy. However, I couldn't find a way to get the hyperparameters for the model. How can I get the hyperparameters of my best model?

ycseong07 commented 1 year ago

Currently, the function for getting hyperparameters of best model is not implemented, but I think it is necessary. This package combines some of the packages of tidymodels ecosystem, so it is not difficult to extract the combination of hyperparameters of the best model using the select_best() function. I will add this function soon. Thanks :)

ycseong07 commented 1 year ago

I added the variable 'bestParams' to the list returned by the fitBestModel() function in fitting.R. Thank you for your advice @katyalex