single-shot-detector
single-shot-detector copied to clipboard
about saver
hi, I want to set ckpt file name as model.ckpt-000201.data-*
saver = tf.train.Saver(max_to_keep=1000, pad_step_number=True) pad_step_number=True is the setting.
how to set saver in estimator.train() ??? help !!!
For model saving, tf.estimator uses export_savedmodel.
Please see the documentation.