keystoneml.nodes.nlp

NGramIndexerImpl

class NGramIndexerImpl[T] extends BackoffIndexer[T, NGram[T]]

Linear Supertypes
BackoffIndexer[T, NGram[T]], NGramIndexer[T, NGram[T]], Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. NGramIndexerImpl
  2. BackoffIndexer
  3. NGramIndexer
  4. Serializable
  5. Serializable
  6. AnyRef
  7. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new NGramIndexerImpl()(implicit arg0: ClassTag[T])

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  12. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  13. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  14. final val maxNgramOrder: Int(5)

    Definition Classes
    NGramIndexerImplNGramIndexer
  15. final val minNgramOrder: Int(1)

    Definition Classes
    NGramIndexerImplNGramIndexer
  16. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  17. def ngramOrder(ngram: NGram[T]): Int

    Returns an order in [minNgramOrder, maxNgramOrder] if valid; otherwise errors out.

    Returns an order in [minNgramOrder, maxNgramOrder] if valid; otherwise errors out.

    Definition Classes
    NGramIndexerImplBackoffIndexer
  18. final def notify(): Unit

    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  20. def pack(ngram: Seq[T]): NGram[T]

    Packs a sequence of words of type WordType into a single NGramType.

    Packs a sequence of words of type WordType into a single NGramType. The current word is ngram.last, and the words before are the context.

    Definition Classes
    NGramIndexerImplNGramIndexer
  21. def removeCurrentWord(ngram: NGram[T]): NGram[T]

    Definition Classes
    NGramIndexerImplBackoffIndexer
  22. def removeFarthestWord(ngram: NGram[T]): NGram[T]

    Definition Classes
    NGramIndexerImplBackoffIndexer
  23. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  24. def toString(): String

    Definition Classes
    AnyRef → Any
  25. def unpack(ngram: NGram[T], pos: Int): T

    Unpacks the pos word out of the packed ngram of type NGramType.

    Unpacks the pos word out of the packed ngram of type NGramType. Position 0 indicates the farthest context (if unigram, the current word), and position MAX_ORDER-1 represents the current word.

    Useful for getting words at special positions (e.g. first two in context).

    Definition Classes
    NGramIndexerImplBackoffIndexer
  26. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from BackoffIndexer[T, NGram[T]]

Inherited from NGramIndexer[T, NGram[T]]

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped