Hello,
I am following the tutorial french model trainning but I am stucked in the part of create the trie file.
I was looking for the native_client.tar.xz where it is the binary of the generate trie, but I just can’t find it. My native_client folder has only the generate_trie.cpp file but no tar.xz.
I also tried to build the binary with the command:
bazel build --workspace_status_command="bash native_client/bazel_workspace_status_cmd.sh" --config=monolithic -c opt --copt=-O3 --copt="-D_GLIBCXX_USE_CXX11_ABI=0" --copt=-fvisibility=hidden //native_client:libdeepspeech.so //native_client:generate_trie
Extracting Bazel installation...
ERROR: The 'build' command is only supported from within a workspace (below a directory having a WORKSPACE file).
See documentation at https://docs.bazel.build/versions/master/build-ref.html#workspace
But the above error appears. (executing in the native_client folder)
Can someone help me?
Python: 3.7.3
SO: Debian buster
GPU: RTX 2060 SUPER
Using common voice Portugues dataset.
For training I am using the commando below:
./DeepSpeech.py --checkpoint_dir /home/deep_train/checkpoint --train_files /home/deep_train/portugues/clips/train.csv --dev_files /home/deep_train/portugues/clips/dev.csv --test_files /home/deep_train/portugues/clips/test.csv --export_dir /home/deep_train/portugues --alphabet_config_path /home/deep_train/portugues/alphabet.txt --lm_binary_path /home/deep_train/portugues/clips/lm.binary --train_batch_size 8 --test_batch_size 8 --dev_batch_size 8 --export_batch_size 1 --epochs 75 > /home/train.log &
And when it is finished and I try to transcribe any audio, I only get “a”, “e” and “o” letters. Command to transcribe, for example:
deepspeech --model /home/deep_train/portugues/output_graph.pb --audio /home/deep_train/portugues/clips/common_voice_pt_19887570.wav
I appreciate any help with the trie file.
Best regards.