junto

JuntoContext

object JuntoContext

An object that provides common functions needed for using Junto.

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

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()
  11. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  12. def getEstimatedLabels(vertex: Vertex, cutAtDummy: Boolean = false, normalize: Boolean = true): Seq[(String, Double)]

    After running LP, each vertex has an estimated set of scores for each label.

    After running LP, each vertex has an estimated set of scores for each label. This method extracts those in a convenient manner by (a) excising the DUMMY label (b) getting only the labels better than DUMMY if requested (false by default) (c) normalizing the scores of all labels extracted (true by default)

  13. def getTopLabels(vertex: Vertex, numToKeep: Int = 1): Seq[(String, Double)]

    After running LP and given a vertex, sort the labels, remove the DUMMY label, take the top N labels, and normalize the scores of those top N.

  14. def getVertices(graph: Graph, vertexIds: Seq[String]): Seq[Vertex]

    Get the vertices given their ids.

  15. def hashCode(): Int

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

    Definition Classes
    Any
  17. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  20. def score(evalLabels: Seq[Label], graph: Graph, defaultLabel: String): (Double, Double)

    Returns the accuracy and average mean reciprocal rank of the graph for a given set of vertices and their corresponding gold labels.

  21. def sortLabels(labelMap: TObjectDoubleHashMap[String]): Seq[(String, Double)]

  22. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  23. def toString(): String

    Definition Classes
    AnyRef → Any
  24. def topLabel(vertex: Vertex, defaultLabel: String): String

    Get the top label for a given vertex.

    Get the top label for a given vertex. Return the default label otherwise. There should be an Option returning version of this.

  25. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any

Ungrouped