Packages

  • package root
    Definition Classes
    root
  • package provingground

    This is work towards automated theorem proving based on learning, using homotopy type theory (HoTT) as foundations and natural language processing.

    This is work towards automated theorem proving based on learning, using homotopy type theory (HoTT) as foundations and natural language processing.

    The implementation of homotopy type theory is split into:

    • the object HoTT with terms, types, functions and dependent functions, pairs etc
    • the package induction with general inductive types and recursion/induction on these.

    The learning package has the code for learning.

    Scala code, including the spire library, is integrated with homotopy type theory in the scalahott package

    We have implemented a functor based approach to translation in the translation package, used for nlp as well as serialization and parsing.

    The library package is contains basic structures implemented in HoTT.

    Definition Classes
    root
  • package learning
    Definition Classes
    provingground
  • case class Deducer(applnWeight: Double = 0.2, lambdaWeight: Double = 0.2, piWeight: Double = 0.2, varWeight: Double = 0.3, vars: Vector[Weighted[Term]] = Vector(), propDecay: Double = 0.5, cutoff: Double = 0.01, feedbackScale: Double = 0.1, abstractionWeight: Double = 0.3, genMemory: Double = 0.8) extends Product with Serializable
    Definition Classes
    learning
  • BufferedRun
  • Sampler
  • absBucket
  • bucket

object bucket extends TermBucket

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. bucket
  2. TermBucket
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def append(t: Term): Unit
    Definition Classes
    TermBucket
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clear(): Unit
    Definition Classes
    TermBucket
  7. def clearAll(): Unit
    Definition Classes
    TermBucket
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  9. def elapsedTime: Long
    Definition Classes
    TermBucket
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  12. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  13. def getTermDistMap: Map[Typ[Term], FiniteDistribution[Term]]

    finite distribution of terms with a given type (total not 1, but weight of type)

    finite distribution of terms with a given type (total not 1, but weight of type)

    Definition Classes
    TermBucket
  14. def getTheorems: FiniteDistribution[Typ[Term]]

    inhabited types (i.e.

    inhabited types (i.e. theorems) weighted by their frequency of generation as terms, normalized to account for most types not being theorems

    Definition Classes
    TermBucket
  15. def getThmsByProofs: FiniteDistribution[Typ[Term]]

    theorems weighted by the total weight of their prooofs

    theorems weighted by the total weight of their prooofs

    Definition Classes
    TermBucket
  16. def getTypDist: FiniteDistribution[Typ[Term]]

    types weighted by their frequency of generation as terms

    types weighted by their frequency of generation as terms

    Definition Classes
    TermBucket
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. var loops: Int
    Definition Classes
    TermBucket
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. var startTime: Long
    Definition Classes
    TermBucket
  24. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  25. val termTypes: Map[Typ[Term], Long]

    number of terms of a given type

    number of terms of a given type

    Definition Classes
    TermBucket
  26. val terms: Map[Typ[Term], Vector[Term]]

    terms counted, sorted by types

    terms counted, sorted by types

    Definition Classes
    TermBucket
  27. def toString(): String
    Definition Classes
    AnyRef → Any
  28. var tot: Long
    Definition Classes
    TermBucket
  29. val types: Map[Typ[Term], Long]

    count of generation of a type (as a term)

    count of generation of a type (as a term)

    Definition Classes
    TermBucket
  30. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  31. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  32. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from TermBucket

Inherited from AnyRef

Inherited from Any

Ungrouped