ezoic

Monday, March 9, 2020

R rds and rda models

https://www.mydatahack.com/how-to-save-machine-learning-models-in-r/


commands:

save rda model

save(model_nnet, file = "/tmp/model_nnet.rda")

load rda model

load(file = "/tmp/model_nnet.rda")

save rds 

saveRDS(model_nnet, file = "/tmp/model_nnet2.rda")

load rds 

model2 <- readRDS("/tmp/model_nnet2.rda")





No comments:

Post a Comment

R is not a simple programming language, and it does better on reading excel files than python

R is not a simple programming language, and it does better on reading excel files than python . tried to read excel files to python and R. i...