-
Notifications
You must be signed in to change notification settings - Fork 55
ANY23-304 Add extractor for OpenIE 1st pass #33
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If there are a large number of new transitive dependencies, possibly useful to add this as a plugin rather than into the core module.
@@ -564,6 +569,4 @@ public static boolean isAbsoluteIRI(String href) { | |||
} | |||
} | |||
|
|||
private RDFUtils() {} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this signalling an intention to change the scope of this class to include non-static methods?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Possibly, I will see how the remainder of the implementation goes.
for(Argument argument : listArg2s) { | ||
sb.append(argument.text()).append("; "); | ||
} | ||
System.out.println(sb.toString()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Presuming this is stub code right now that will eventually send results to the ExtractorResult.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, correct.
Yes I think this is an excellent suggestion. I'm going to go ahead and refactor @ansell |
This issue is a first pass at addressing https://issues.apache.org/jira/browse/ANY23-304. There is more work to be done on the new extractor. The new dependency which has been introduced has a significant impact on the size of Any23 as there are loads of new transitive dependencies. @Yongyao this is for context.