After looking a bit more, it seems there are many `-nan` when the alignment does not work, but it does not seem to be linked to the error which is this:
```
ERROR (gmm-est-fmllr-gpost[5.2.0-915e]:~RandomAccessTableReader():util/kaldi-table-inl.h:2578) failure detected in destructor.
[ Stack-Trace: ]
kaldi::MessageLogger::HandleMessage(kaldi::LogMessageEnvelope const&, char const*)
kaldi::MessageLogger::~MessageLogger()
gmm-est-fmllr-gpost() [0x41798a]
```
the error seems to be coming from
which is weird since it seems to work for most other alignments, is it something that can happen?
```
| template<class Holder> |
| RandomAccessTableReader<Holder>::~RandomAccessTableReader() { |
| if (IsOpen() && !Close()) // call Close() yourself to stop this being thrown. |
| KALDI_ERR << "failure detected in destructor."; |
| }
```
|