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
{{ message }}
This repository has been archived by the owner on Aug 3, 2021. It is now read-only.
similarly with infer_T2S
the code is not abe to load the model, how should I fix the checkpoint?
WARNING:tensorflow:From D:\GitHub\OpenSeq2Seq\open_seq2seq\parts\transformer\attention_layer.py:24: The name tf.layers.Layer is deprecated. Please use tf.compat.v1.layers.Layer instead.
WARNING:tensorflow:From D:\GitHub\OpenSeq2Seq\open_seq2seq\parts\cnns\tcn.py:8: The name tf.layers.Conv1D is deprecated. Please use tf.compat.v1.layers.Conv1D instead.
*** Restoring from the latest checkpoint
WARNING:tensorflow:UnknownError: NewRandomAccessFile failed to Create/Open: Infer_S2T/checkpoint : Access is denied.
; Input/output error
WARNING:tensorflow:Infer_S2T/checkpoint: Checkpoint ignored
I downloaded the checkpoints for SpeechToText https://drive.google.com/file/d/12CQvNrTvf0cjTsKjbaWWvdaZb7RxWI6X/view and TextToSpeech https://drive.google.com/file/d/1Ddf7nDI2PpgaxvZMm7bd8N_Evk_ExTwg/view
I extract everything and put each checkpoint folder inside infer_S2T and infer_T2S
so, inside infer_S2T folder there are
checkpoint
model.ckpt-438235.data-00000-of-00001
model.ckpt-438235.index
model.ckpt-438235.meta
similarly with infer_T2S
the code is not abe to load the model, how should I fix the checkpoint?
WARNING:tensorflow:From D:\GitHub\OpenSeq2Seq\open_seq2seq\parts\transformer\attention_layer.py:24: The name tf.layers.Layer is deprecated. Please use tf.compat.v1.layers.Layer instead.
WARNING:tensorflow:From D:\GitHub\OpenSeq2Seq\open_seq2seq\parts\cnns\tcn.py:8: The name tf.layers.Conv1D is deprecated. Please use tf.compat.v1.layers.Conv1D instead.
*** Restoring from the latest checkpoint
WARNING:tensorflow:UnknownError: NewRandomAccessFile failed to Create/Open: Infer_S2T/checkpoint : Access is denied.
; Input/output error
WARNING:tensorflow:Infer_S2T/checkpoint: Checkpoint ignored
OSError Traceback (most recent call last)
in
30 return model, checkpoint
31
---> 32 model_S2T, checkpoint_S2T = get_model(args_S2T, "S2T")
33 model_T2S, checkpoint_T2S = get_model(args_T2S, "T2S")
34
in get_model(args, scope)
26 with tf.variable_scope(scope):
27 args, base_config, base_model, config_module = get_base_config(args)
---> 28 checkpoint = check_logdir(args, base_config)
29 model = create_model(args, base_config, config_module, base_model, None)
30 return model, checkpoint
D:\GitHub\OpenSeq2Seq\open_seq2seq\utils\utils.py in check_logdir(args, base_config, restore_best_checkpoint)
692 raise IOError(
693 "There is no valid TensorFlow checkpoint in the "
--> 694 "{} directory. Can't load model".format(ckpt_dir)
695 )
696 else:
OSError: There is no valid TensorFlow checkpoint in the Infer_S2T/ directory. Can't load model
The text was updated successfully, but these errors were encountered: