DocumentMetaData md = DocumentMetaData.get(view1);
String docID = md.getDocumentId().substring(md.getDocumentId().indexOf("-") + 1);
EntailmentClassificationOutcome outcome = JCasUtil.selectSingle(jcas, EntailmentClassificationOutcome.class);
// System.out.println(docID + "::" + outcome.getOutcome());
gold.put(docID, outcome.getOutcome());
}
catch (CASException e) {
throw new AnalysisEngineProcessException(e);
}
}