Giter Site home page Giter Site logo

Comments (1)

lunar333 avatar lunar333 commented on June 17, 2024

the full use program is as followed

lab_folder='/home/sxyl3800/workspace/kaldi/egs/timit/s5/exp/dnn4_pretrain-dbn_dnn_ali_test'
lab_opts='ali-to-pdf'
out_folder='/home/sxyl3800/workspace/e2e-sincnet/egs/timit/asr1/data/test_raw_25ms'
wav_lst='/home/sxyl3800/workspace/e2e-sincnet/egs/timit/asr1/data/test_raw_25ms/wav.lst'
scp_file_out='/home/sxyl3800/workspace/e2e-sincnet/egs/timit/asr1/data/test_raw_25ms/feats_raw.scp'

sig_fs=16000 # Hz
sig_wlen=25 # ms

lab_fs=16000 #Hz
lab_wlen=25 #ms
lab_wshift=10 #ms

sig_wlen_samp=int((sig_fssig_wlen)/1000)
lab_wlen_samp=int((lab_fs
lab_wlen)/1000)
lab_wshift_samp=int((lab_fs*lab_wshift)/1000)

Create the output folder

try:
os.stat(out_folder)
except:
os.makedirs(out_folder)

Creare the scp file

scp_file = open(scp_file_out,"w")

reading the labels

lab= { k:v for k,v in read_vec_int_ark('gunzip -c '+lab_folder+'/ali*.gz | '+lab_opts+' '+lab_folder+'/final.mdl ark:- ark:-|', out_folder)}

from kaldi-io-for-python.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.