You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
unzip the file and place it to checkpoint dir.
Then modify config.py.
class directories:
checkpoints = 'checkpoints/noiseMScsC8'
latest_filename = 'noiseMScsC8_epoch15.ckpt-15.index'
and
replace the code such as (compress.py) from
ckpt = tf.train.get_checkpoint_state(directories.checkpoints)
to
ckpt = tf.train.get_checkpoint_state(directories.checkpoints,
latest_filename=directories.latest_filename)
it will load.
But TF 1.3, 1.8 and 1.13 I get an error utf-8 loading error.
Hi teacher, I have a question,replace ckpt = tf.train.get_checkpoint_state (directories.checkpoints) with ckpt = tf.train.get_checkpoint_state (directories.checkpoints, Latest_filename = directories.Latest_filename) will report an error TypeError: get_checkpoint_state () got an unexpected keyword argument 'Latest_filename', do you know how to solve it?
i have downloaded the noise sampling model but no checkpoint file found, could you tell how to generate one with detail? thanks
The text was updated successfully, but these errors were encountered: