I am new to data science and I am still learning machine learning. I know we can use Regression
, Classification
, Clustering
, ANN
, CNN
, RNN
models and so on according to the application.
These models we code, training and predict some data in PC. Some models take to much time training also. After that, we shut down the PC.
If I want the same model with the same data set after some days, again open the PC and training same model.
I want to know how to use trained modal in future without training, again and again, every time PC open. I asking mostly for ANN
, CNN
, RNN
models.
Also, I want to know where the weights values are stored for modal because weights are not stored in the variable. How can I find it and can not I use those trained weight data to give ANN
in future.