Package

org.clulab

dynet

Permalink

package dynet

Visibility
  1. Public
  2. All

Type Members

  1. class AnnotatedSentence extends AnyRef

    Permalink
  2. class BasicRowReader extends RowReader

    Permalink
  3. trait ConstEmbeddings extends AnyRef

    Permalink
  4. class ConstEmbeddingsGlove extends ConstEmbeddings

    Permalink

    Implements the ConstEmbeddings using GloVe vectors Note: two difference from the vanilla GloVe vectors are: - Words with low frequency may be filtered out of the matrix - The empty string ("") stands for UNK; it is typically computed by averaging the embeddings of the culled words

  5. class EmbeddingLayer extends InitialLayer

    Permalink

    This layer takes a sequence of words and produces a sequence of Expression that stores the words' full embeddings

  6. trait FinalLayer extends Saveable

    Permalink
  7. abstract class ForwardLayer extends FinalLayer

    Permalink
  8. class GreedyForwardLayer extends ForwardLayer

    Permalink
  9. trait InitialLayer extends Saveable

    Permalink

    First layer that occurs in a sequence modeling architecture: goes from words to Expressions

  10. trait IntermediateLayer extends Saveable

    Permalink

    Intermediate layer in a sequence modeling architecture: goes from ExpressionVector to ExpressionVector

  11. class Layers extends Saveable

    Permalink

    A sequence of layers that implements a complete NN architecture for sequence modeling

  12. class Metal extends AnyRef

    Permalink

    Multi-task learning (MeTaL) for sequence modeling Designed to model any sequence task (e.g., POS tagging, NER), and SRL

  13. class MetalShell extends Shell

    Permalink
  14. class RnnLayer extends IntermediateLayer

    Permalink

    This layer applies a biLSTM over the sequence of Expressions produced by a previous layer

  15. trait RowReader extends AnyRef

    Permalink
  16. class SafeTrainer extends AnyRef

    Permalink
  17. trait Saveable extends AnyRef

    Permalink
  18. case class ScoreCounts(correct: Int = 0, gold: Int = 0, predicted: Int = 0) extends Product with Serializable

    Permalink
  19. class ScoreCountsByLabel extends AnyRef

    Permalink
  20. class SentenceIterator extends Iterator[(Int, Array[Row])]

    Permalink
  21. case class Shard(taskId: Int, startPosition: Int, endPosition: Int) extends Product with Serializable

    Permalink
  22. class SrlArgsRowReader extends RowReader

    Permalink
  23. class Task extends AnyRef

    Permalink
  24. class TaskManager extends Configured

    Permalink

    Manages the tasks in LstmCrfMtl

  25. class Utils extends AnyRef

    Permalink
  26. class ViterbiForwardLayer extends ForwardLayer

    Permalink

Value Members

  1. object ArrayMath

    Permalink

    Some really basic vector math that happens outside of DyNet

  2. object ConstEmbeddingsGlove

    Permalink
  3. object EmbeddingLayer

    Permalink
  4. object ForwardLayer

    Permalink
  5. object GreedyForwardLayer

    Permalink
  6. object Layers

    Permalink
  7. object Metal

    Permalink
  8. object ModelAveraging extends App

    Permalink

    Averages the parameter weights from multiple DyNet model files

  9. object ModelDiff extends App

    Permalink

    Diffs 2 DyNet models Necessary to

  10. object RnnLayer

    Permalink
  11. object SafeTrainer

    Permalink
  12. object SeqScorer

    Permalink

    Scores the labels assigned to a sequence of words Unlike the CoNLL-2003 scorer, this scorer operates over individual tokens rather than entity spans

  13. object SrlArgsRowReader

    Permalink
  14. object TaskManager

    Permalink
  15. object Utils

    Permalink

    Utility methods used by DyNet applications

  16. object ViterbiForwardLayer

    Permalink

Ungrouped