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
Why are we using "load_segments_rechash" function when loading the segments file? Why are we not using "load_segments", Its causing key error in the pipeline.
#32
This is regarding mini_librispeech speech recipe
Line number 254 in eend/feature.py filtered_segments = kaldi_obj.segments[kaldi_obj.segments['rec'] == rec] returns a key error of 'rec' if we use load_segments_recash in line number 149 in eend/kaldi_data.py which can be fixed by using filtered_segments = kaldi_obj.segments[rec] But I'm not really sure if we should change this.
Any help is welcome.
Let me know what to use and when to use. Thanks
The text was updated successfully, but these errors were encountered:
This is regarding mini_librispeech speech recipe
Line number 254 in eend/feature.py
filtered_segments = kaldi_obj.segments[kaldi_obj.segments['rec'] == rec]
returns a key error of 'rec' if we useload_segments_recash
in line number 149 in eend/kaldi_data.py which can be fixed by usingfiltered_segments = kaldi_obj.segments[rec]
But I'm not really sure if we should change this.Any help is welcome.
Let me know what to use and when to use. Thanks
The text was updated successfully, but these errors were encountered: