VoxForge
Hello,
I have this error to get a wlist file by using:
julia ../bin/prompts2wlist.jl prompts.txt wlist
plz suggest me,What exact the line in "prompts2wlist.jl" changed , so that you will not get that warning message.
I dont know the programming in Julia.
Thanks
Prithviraj
>,What exact the line in "prompts2wlist.jl" changed , so that you will not get
>that warning message.
stacktrace says line 39:
[3] prompts2wlist(::String, ::String) at E:\voxforge\bin\prompts2wlist.jl:39
therefore change line 39 from:
wlist_arr=Array(String,length(wordhash))
to:
wlist_arr=Array{String}(length(wordhash))
See Julia Arrays documentation for more information.