taggedWordList[i] = new ArrayList<IntTaggedWord>(numTags);
HasWord wordObject = wordList.get(i);
if (wordObject instanceof CoreLabel) {
originalLabels[i] = (CoreLabel) wordObject;
}
String wordStr = wordObject.word();
//Word context (e.g., morphosyntactic info)
String wordContextStr = null;
if(wordObject instanceof HasContext) {
wordContextStr = ((HasContext) wordObject).originalText();