Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/edu/stanford/nlp/ie/machinereading/ExtractorMerger.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public ExtractorMerger(Extractor[] extractors) {
@Override
public void annotate(Annotation dataset) {
// TODO for now, we only merge RelationMentions
logger.info("Extractor 0 annotating dataset.");
logger.fine("Extractor 0 annotating dataset.");
extractors[0].annotate(dataset);

// store all the RelationMentions per sentence
Expand All @@ -49,7 +49,7 @@ public void annotate(Annotation dataset) {

// skip first extractor since we did it at the top
for (int extractorIndex = 1; extractorIndex < extractors.length; extractorIndex++) {
logger.info("Extractor " + extractorIndex + " annotating dataset.");
logger.fine("Extractor " + extractorIndex + " annotating dataset.");
Extractor extractor = extractors[extractorIndex];
extractor.annotate(dataset);

Expand All @@ -75,7 +75,7 @@ public static Extractor buildRelationExtractorMerger(String[] extractorModelName
BasicRelationExtractor[] relationExtractorComponents = new BasicRelationExtractor[extractorModelNames.length];
for (int i = 0; i < extractorModelNames.length; i++) {
String modelName = extractorModelNames[i];
logger.info("Loading model " + i + " for model merging from " + modelName);
logger.fine("Loading model " + i + " for model merging from " + modelName);
try {
relationExtractorComponents[i] = BasicRelationExtractor.load(modelName);
} catch (IOException | ClassNotFoundException e) {
Expand Down