final Map<String, String> subtopicLabels;
public FubTestCollection(String basePath)
{
/** [topicId][resultIndex] = subopicId */
final int [][] resultSubtopicIds = loadSubtopicMapping(new ClassResource(
AmbientDocumentSource.class, basePath + "/STRel.txt"));
documentsByTopicId = loadDocuments(new ClassResource(AmbientDocumentSource.class,
basePath + "/results.txt"), resultSubtopicIds);
subtopicSizes = prepareSubtopicSizes(resultSubtopicIds);
subtopicLabels = loadSubtopicLabels(new ClassResource(
AmbientDocumentSource.class, basePath + "/subTopics.txt"));
}