View source: R/fuction_getscore.R
get.score | R Documentation |
Calculate score from each model to testing dataset. You can also use training data or whole dataset. It accept untill 6 models
get.score(t, m1, m2, m3, m4, m5, m6)
t |
A dataset with RT and Chemical Descriptors, like training or testing. |
m1 |
a model previusly trained (XGBoost, BRNN, RF, Keras, Lightgbm or autoML) |
m2 |
a model previusly trained (XGBoost, BRNN, RF, Keras, Lightgbm or autoML) |
m4 |
a model previusly trained (XGBoost, BRNN, RF, Keras, Lightgbm or autoML) |
m5 |
a model previusly trained (XGBoost, BRNN, RF, Keras, Lightgbm or autoML) |
m6 |
a model previusly trained (XGBoost, BRNN, RF, Keras, Lightgbm or autoML) |
Returns score, RMSE, R2, MAE and 95 It is orderd by RMSE ascending so always you have best ranking model on top
stat <- get.score(testing, model_xgb, model_lightgbm, model_keras,
model_brnn, model_rf, model_h2o)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.