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
Related : coqui-ai/STT#2338
^ STT's lm_optimizer throws a NotFoundError from TF, since the path points to nowhere in transfer-learning configuration, as checkpoint path is /transfer-checkpoint/ instead of /mnt/checkpoints/.
if [ -f"/transfer-checkpoint/checkpoint"-a!-f"/mnt/models/output_graph.pb" ];then
echo"Using checkpoint from ${TRANSFER_CHECKPOINT}"
cp -a /transfer-checkpoint/* /mnt/checkpoints/
fi;
That was for DS but with STT, we have access to --load_checkpoint_dir and --save_checkpoint_dir flags instead.
if [ -f"/transfer-checkpoint/checkpoint"-a!-f"/mnt/models/output_graph.tflite" ];thenecho"Using checkpoint from ${TRANSFER_CHECKPOINT}"# use --load_checkpoint_dir for transfer learning
LOAD_CHECKPOINT_FROM="--load_checkpoint_dir /transfer-checkpoint --save_checkpoint_dir /mnt/checkpoints"else
LOAD_CHECKPOINT_FROM="--checkpoint_dir /mnt/checkpoints/"fi;
Produced checkpoints are using absolute path where they should really be using relative ones.
Checkpoints FR STT 0.9
Here is English checkpoint for reference.
Fix should probably go into
package.sh
I think.Related : coqui-ai/STT#2338
^ STT's
lm_optimizer
throws aNotFoundError
from TF, since the path points to nowhere in transfer-learning configuration, as checkpoint path is/transfer-checkpoint/
instead of/mnt/checkpoints/
.commonvoice-fr/DeepSpeech/CONTRIBUTING.md
Lines 76 to 78 in 5699e59
commonvoice-fr/DeepSpeech/train.sh
Lines 14 to 17 in 5699e59
That was for DS but with STT, we have access to
--load_checkpoint_dir
and--save_checkpoint_dir
flags instead.Example from my branch stt140-cv9
The text was updated successfully, but these errors were encountered: