tensorflow - Saving and Restoring a trained LSTM in Tensor Flow -
i trained lstm classifier, using basiclstmcell. how can save model , restore use in later classifications?
i wondering myself. other pointed out, usual way save model in tensorflow use tf.train.saver()
, believe saves values of tf.variables
. i'm not sure if there tf.variables
inside basiclstmcell
implementation saved automatically when this, or if there perhaps step need taken, if else fails, basiclstmcell
can saved , loaded in pickle file.
Comments
Post a Comment