Menu

CMU Sphinx 5prealpha alignment issue

Help
srdhm
2016-09-08
2016-09-11
  • srdhm

    srdhm - 2016-09-08

    I am using sphinx 5prealpha to do alignment but I am getting bad results. I tried different AM and dictionnaries the results is always the same. When I use the same AM and dictionaries with an older version (sphinx4) I get very good result. for this audio file and text : files

    The result is good for sphinx4 and not for 5prealpha. I am sure if you try with any french AM and dictionary you will see the difference. Is there any way to fix that issue.

    I tried with the two AM and dictionaries here : Ester and SPhinx models

    I am using this source code: Sphinx source code

    When I use ester AM and dictionary, I expect to get (result from the old sphinx version 4): expected.txt

    But I get (with 5 prealpha :what_i_get.txt

    I am displaying result with :

                            List<WordResult> wr = aligner.align(audioUrl, text);
    
                        for (WordResult result : wr) {
    
                            System.out.println(
                                    result.getWord().toString() + " " + Long.toString(result.getTimeFrame().getStart())
                                            + "  " + Long.toString(result.getTimeFrame().getEnd()));
                        }
    

    Any help will be appreciated.

     

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.