sLogger.info("Loading models for " + fLang + " ...");
// FileSystem fs = FileSystem.get(conf);
FileSystem localFs = FileSystem.getLocal(conf);
InputStream modelIn = localFs.open(new Path(conf.get("eSentDetectorFile")));
SentenceModel model = new SentenceModel(modelIn);
fModel = new SentenceDetectorME(model);
sLogger.info("Sentence model created successfully.");
eVocabSrc = (VocabularyWritable) HadoopAlign.loadVocab(new Path(conf.get("eVocabSrcFile")), localFs);
eVocabTrg = (VocabularyWritable) HadoopAlign.loadVocab(new Path(conf.get("eVocabTrgFile")), localFs);