M S Sravan Kumar
Lurker
I have a bin file en-parser-chunking.bin which does the chunking part in my project.I am using it as follows
InputStream modelInParse = null;
try {
//load chunking model
Log.i(TAG,"1");
modelInParse = new FileInputStream("en-parser-chunking.bin");
But this is throwing an IO exception in android studio.
I have it in my project files as well.
InputStream modelInParse = null;
try {
//load chunking model
Log.i(TAG,"1");
modelInParse = new FileInputStream("en-parser-chunking.bin");
But this is throwing an IO exception in android studio.
I have it in my project files as well.