You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello to everybody
I am ...sorry to say that... extremely frustrated with this application
No matter what I can't find the combination that works
At first environment
Windows 10
Initially Java8 but I also installed java11
So I started with the latest version
First run
this was both on 5.5 and 5.4
No matter what.
I was forced to downgrade to 5.2 in order to have something running
I was able to trec_setup.bat
Then it was the indexing...this also went smoothly
I prepared the queries.txt according to the specs of my assignment
and then again issues
trec_terrier.bat -r
this time I stumbled on a brick wall as the application is complaining about it can't determine document length
the error is pinpointed to
public int getDocumentLength()
{
try {
return doi.getDocumentLength(id);
} catch (ArrayIndexOutOfBoundsException aioobe) {
throw new RuntimeException("Problem looking for doclength for document "+ id + " -- docid out of bounds, possible (concurrent?) decompression error when reading from " + bitFileReader, aioobe);
} catch (Exception e) {
throw new RuntimeException("Unknown problem looking for doclength for document "+ id +" "+ e, e);
}
}
Right now I am again testing on another machine using version 5.5 and jdk20 but this time again the
C:\Program is stopping everything at the very first action
I am pretty sure that these kind of issues have being resolved in the past as I took a look at the old forum via Internet's Archive but it didn't hold any actual posting ..just the headers.
If is not too much can anyone give some helping hand
Thanks in advance
The text was updated successfully, but these errors were encountered:
I came across the same problem, and found that it was caused because the script cannot handle the spaces in paths for example C:\Program Files, has a space between "Program" and "Files", so you need to edit the JAVA_HOME or path variable values that include java paths,
For example if your original path is "C:\Program Files\Java\jdk17"
Change it to => "C:\Progra~1\Java\jdk17",
The conclusion is relpace "Program Files", with "Progra~1", to eliminate that space
I am now facing a problem with bin\terrier.bat, on running the command, it throws an error, could not load or find main class, and I have tried reinstalling jdk, separately installing jre, checked path variables, etc. Need help with it!
Hello to everybody
I am ...sorry to say that... extremely frustrated with this application
No matter what I can't find the combination that works
At first environment
Windows 10
Initially Java8 but I also installed java11
So I started with the latest version
First run
this was both on 5.5 and 5.4
No matter what.
I was forced to downgrade to 5.2 in order to have something running
I was able to trec_setup.bat
Then it was the indexing...this also went smoothly
I prepared the queries.txt according to the specs of my assignment
and then again issues
trec_terrier.bat -r
this time I stumbled on a brick wall as the application is complaining about it can't determine document length
the error is pinpointed to
Right now I am again testing on another machine using version 5.5 and jdk20 but this time again the
C:\Program is stopping everything at the very first action
I am pretty sure that these kind of issues have being resolved in the past as I took a look at the old forum via Internet's Archive but it didn't hold any actual posting ..just the headers.
If is not too much can anyone give some helping hand
Thanks in advance
The text was updated successfully, but these errors were encountered: