I have implemented LSTM-CTC model in android device and comes to this code block.
SparseToDense sparseDense = ctc_decode(out, input_length, true, beam_width, top_paths);
I am getting the sparseDense object perfectly with expected shape but i don't know how to get retrieve float array from this.
If anyone know, please reply...
Thanks.