org.allenai.nlpstack.core.parse

graph

package graph

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. graph
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. type Dependency = Edge[DependencyNode]

  2. abstract class DependencyEdgeMatcher extends BaseEdgeMatcher[TokenDependencyNode]

  3. class DependencyGraph extends Graph[DependencyNode]

    A representation of a graph over dependencies.

    A representation of a graph over dependencies. This richer representation may include the text of the original sentence, the original nodes (before collapsing), and the original dependencies.

  4. case class DependencyNode(id: Int, string: String) extends Product with Serializable

    A representation for a node in the graph of dependencies.

    A representation for a node in the graph of dependencies. A node represents one or more adjacent tokens in the source sentence.

  5. class DependencyPattern extends Pattern[TokenDependencyNode]

    A pattern over a graph of dependencies.

  6. class DependencyPatternSerializationException extends RuntimeException

  7. class JoinedDependencyGraph extends Graph[JoinedDependencyNode]

  8. case class JoinedDependencyNode(ids: Seq[Int], strings: Seq[String]) extends Product with Serializable

    A representation for a node in the graph of dependencies.

    A representation for a node in the graph of dependencies. A node represents one or more adjacent tokens in the source sentence.

  9. class LabelEdgeMatcher extends DependencyEdgeMatcher

    Match a DirectedEdge[TokenDependencyNode].

  10. class PostagNodeMatcher extends BaseNodeMatcher[TokenDependencyNode]

  11. class RegexEdgeMatcher extends DependencyEdgeMatcher

    Match a DirectedEdge[TokenDependencyNode].

  12. class RegexNodeMatcher extends BaseNodeMatcher[TokenDependencyNode]

  13. class TextNodeMatcher extends BaseNodeMatcher[TokenDependencyNode]

    Match a TokenDependencyNode.

  14. case class TokenDependencyNode(id: Int, lemmatizedToken: Lemmatized[PostaggedToken]) extends Product with Serializable

    A representation for a node in the graph of dependencies.

    A representation for a node in the graph of dependencies. A node represents one or more adjacent tokens in the source sentence.

  15. class TokenDependencyNodeMatcher extends BaseNodeMatcher[TokenDependencyNode]

    Match a TokenDependencyNode.

Value Members

  1. object Dependencies

  2. object Dependency

  3. object DependencyEdgeMatcher

  4. object DependencyGraph

  5. object DependencyNode extends Serializable

  6. object DependencyPattern

  7. object JoinedDependencyNode extends Serializable

  8. object TokenDependencyNode extends Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped