-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
java.lang.ArrayIndexOutOfBoundsException #17
Comments
The problem is that AMRParser tries to read a tokenization file that doesn't exist. It seems that instead of raising an exception this results in an empty array. This happens in line 169 of AMRParser.scala: val tokenized = fromFile(options('tokenized).asInstanceOf[String]).getLines/.map(x => x)/.toArray Trying to access an element of this empty array in line 197 causes an exception which gets handled, but during handling there is another attempted access in line 307, which causes the ArrayIndexOutOfBoundsException. As a simple workaround in case your input text is already whitespace tokenized, you can replace line 169 with this line, run ./compile again, and everything should work: val tokenized = input Alternatively, you could try to run the tokenize script manually and set the --tok environment variable in config.sh |
I followed what @bheinzerling suggested and it worked for parsing. But when I run
I went to the line number 40 of
I compiled it.
but it gives nothing as output. The file What can be done? (I am using the pre-trained models-2016.09.18.tgz only) |
@ritwikmishra I was experiencing a similar problem and the solution in #16 solved it for me. Just comment out |
@ConstantineLignos I tried what you suggested. And compiled it again. Now output comes
Bdw I am using CAMR parser now, it is working better as per my needs. |
And I do the same thing like you in CorpusTool.scala file. And I got the follow message:
So can you solve your problem? |
@calliwen I don't know how much this helps, but I am now seeing what others are, where commenting out the line of Perl I suggest above is not enough to fix it. We have two otherwise identical machines where one works and the other doesn't, and we haven't been able to sort out the difference. However, in your case, I think this is the most important error:
If you comment out line 149 of that file, does the problem go away? |
Thanks for the reply. When I use it on MacOS, I got the "ICU uconv" and "utf8 unsupported" error. But When I run it on Linux, I got the above msg output, and solved it with your solution. |
@calliwen Glad it worked! You can probably get a working |
I'm using to parse a given text using the following command.
scripts/PARSE.sh < ../text.in > ../text.out 2> output_file.err
The model that I was trying to use was LDC2014T12. But I get the following error.
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 0 at edu.cmu.lti.nlp.amr.AMRParser$$anonfun$main$3.apply(AMRParser.scala:307) at edu.cmu.lti.nlp.amr.AMRParser$$anonfun$main$3.apply(AMRParser.scala:192) at scala.collection.TraversableLike$WithFilter$$anonfun$foreach$1.apply(TraversableLike.scala:772) at scala.collection.IndexedSeqOptimized$class.foreach(IndexedSeqOptimized.scala:33) at scala.collection.mutable.ArrayOps$ofRef.foreach(ArrayOps.scala:108) at scala.collection.TraversableLike$WithFilter.foreach(TraversableLike.scala:771) at edu.cmu.lti.nlp.amr.AMRParser$.main(AMRParser.scala:192) at edu.cmu.lti.nlp.amr.AMRParser.main(AMRParser.scala)
I tried using other models given. But the same error occurred.
I tried using
scripts/EVAL.sh
also. It also gave the same error.Any help..?
Thanks..
The text was updated successfully, but these errors were encountered: