org.clulab.openie.entities

Type members

Classlikes

class CustomizableRuleBasedFinder(entityEngine: ExtractorEngine, avoidEngine: ExtractorEngine, val tagSet: TagSet, stopNER: Set[String], ensureBaseTagNounVerb: Boolean, maxHops: Int, maxLength: Int, val INVALID_OUTGOING: Set[Regex], val INVALID_INCOMING: Set[Regex], val VALID_OUTGOING: Set[Regex]) extends RuleBasedEntityFinder
Companion:
object
object EntityConstraints extends Logging

Utilities for validating entities

Utilities for validating entities

class RuleBasedEntityFinder(val entityEngine: ExtractorEngine, val avoidEngine: ExtractorEngine, val maxHops: Int, val maxLength: Int) extends EntityFinder with Logging

Finds Open IE-style entities from a org.clulab.processors.Document

Finds Open IE-style entities from a org.clulab.processors.Document

Value parameters:
avoidEngine

an ExtractorEngine for tokens/spans to be avoided. Runs BEFORE entityEngine.

entityEngine

an ExtractorEngine for entities. Runs AFTER avoidEngine.

maxHops

the maximum number of dependencies relations to follow during expansion.

maxLength

the maximum allowed length of an entity in tokens.

Companion:
object
object RuleBasedEntityFinder extends Logging
Companion:
class