java.lang.ArrayIndexOutOfBoundsException: 13
Brought to you by:
mcschatz
If you only provide 13 arguments on the command line, you get an array out of bounds exception - looks like the code that checks args wasn't updated when max_seq_len was added. The attachment fixes it.
changes a check from <13 to <14